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.

30 lines
625 B

package com.stone.conf.exception;
/**
* 内部服务异常
*/
public class InternalServerException extends BusinessException {
private static final long serialVersionUID = 2659909836556958676L;
public InternalServerException() {
super();
}
public InternalServerException(String msg, Throwable cause) {
super(msg, cause);
}
public InternalServerException(String msg, Throwable cause, Object... objects) {
super(msg, cause, objects);
}
public InternalServerException(String msg) {
super(msg);
}
public InternalServerException(String formatMsg, Object... objects) {
super(formatMsg, objects);
}
}