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

com.github.kischang.fastdfs.exception.FastDFSException Maven / Gradle / Ivy

The newest version!
package com.github.kischang.fastdfs.exception;

/**
 * FastDFS Exception
 *
 * @author KisChang
 * @version 1.0
 */
public class FastDFSException extends Exception {

    private int errorCode = 0;

    public FastDFSException(int errorCode) {
        this.errorCode = errorCode;
    }

    public FastDFSException(String message, int errorCode) {
        super(message);
        this.errorCode = errorCode;
    }

    public FastDFSException(String message, Throwable cause, int errorCode) {
        super(message, cause);
        this.errorCode = errorCode;
    }

    public FastDFSException(Throwable cause, int errorCode) {
        super(cause);
        this.errorCode = errorCode;
    }

    public FastDFSException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace, int errorCode) {
        super(message, cause, enableSuppression, writableStackTrace);
        this.errorCode = errorCode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy