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

com.jeesuite.filesystem.provider.FSOperErrorException Maven / Gradle / Ivy

There is a newer version: 1.3.6
Show newest version
/**
 * 
 */
package com.jeesuite.filesystem.provider;

import com.jeesuite.common.JeesuiteBaseException;

/**
 * @description 
* @author vakin * @date 2017年1月7日 */ public class FSOperErrorException extends JeesuiteBaseException { private static final long serialVersionUID = 1L; private int code; public FSOperErrorException() { } public FSOperErrorException(String privoderName,Throwable cause) { super(9999, privoderName, cause); } public FSOperErrorException(String privoderName,String message) { this(privoderName, 500, message); } public FSOperErrorException(String privoderName,int code,String message) { super(9999,privoderName + "[" + message + "]"); this.code = code; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy