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.

37 lines
741 B

package com.stone.conf.exception;
import com.stone.api.enums.ResultCode;
/**
* 参数无效异常
*/
public class ParameterInvalidException extends BusinessException {
private static final long serialVersionUID = 3721036867889297081L;
public ParameterInvalidException() {
super();
}
public ParameterInvalidException(Object data) {
super();
super.data = data;
}
public ParameterInvalidException(ResultCode resultCode) {
super(resultCode);
}
public ParameterInvalidException(ResultCode resultCode, Object data) {
super(resultCode, data);
}
public ParameterInvalidException(String msg) {
super(msg);
}
public ParameterInvalidException(String formatMsg, Object... objects) {
super(formatMsg, objects);
}
}