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

elephant.rpc.server.core.BizException Maven / Gradle / Ivy

package elephant.rpc.server.core;

/**
 * 
 * @author skydu
 *
 */
public class BizException extends Exception{
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;	
	//
	protected int code;
	public BizException() {
		
	}
	//
	public BizException(int code) {
		super();
		this.code=code;
	}
	//
	public BizException(int code,String msg){
		super(msg);
		this.code=code;
	}
	//
	public BizException(int code,String msg,Throwable e){
		super(msg, e);
		this.code=code;
	}
	//
	public BizException(int code,Throwable e){
		super(e);
		this.code=code;
	}
	//
	public int getCode() {
		return code;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy