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;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy