zsw-farm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
800 B

package com.zsw.exception;
/**
* 非业务异常
* 用于在处理非业务逻辑时,进行抛出的异常。
*
* @author 云久
* @version 1.0
* @see Exception
*/
public class CommonException extends BaseCheckedException {
public CommonException(int code, String message) {
super(code, message);
}
public CommonException(int code, String format, Object... args) {
super(code, String.format(format, args));
this.code = code;
this.message = String.format(format, args);
}
public CommonException wrap(int code, String format, Object... args) {
return new CommonException(code, format, args);
}
@Override
public String toString() {
return "BizException [message=" + message + ", code=" + code + "]";
}
}