All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hecloud.runtime.common.exception.DataFormatException Maven / Gradle / Ivy

package com.hecloud.runtime.common.exception;

import lombok.Getter;
import lombok.Setter;

/**
 * @author LoveInBJ
 */
public class DataFormatException extends RuntimeException {

    @Getter
    private final String code = "DATA_FORMAT_EXCEPTION";
    @Getter
    @Setter
    private String solution;

    public DataFormatException(String message, Throwable cause) {
        super(message, cause);
    }

    public DataFormatException(Throwable cause) {
        super(cause);
    }

    public DataFormatException(String message, Throwable cause, String solution) {
        super(message, cause);
        this.solution = solution;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy