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.

36 lines
702 B

package com.stone.conf.exception;
import com.stone.api.enums.ResultCode;
/**
* 远程访问异常
*/
public class RemoteAccessException extends BusinessException {
private static final long serialVersionUID = -832464574076215195L;
public RemoteAccessException() {
super();
}
public RemoteAccessException(Object data) {
super.data = data;
}
public RemoteAccessException(ResultCode resultCode) {
super(resultCode);
}
public RemoteAccessException(ResultCode resultCode, Object data) {
super(resultCode, data);
}
public RemoteAccessException(String msg) {
super(msg);
}
public RemoteAccessException(String formatMsg, Object... objects) {
super(formatMsg, objects);
}
}