com.tmsps.ne4spring.exception.NEServiceException Maven / Gradle / Ivy
package com.tmsps.ne4spring.exception;
/**
*
* @author zhangwei [email protected]
*
*/
public class NEServiceException extends RuntimeException {
private static final long serialVersionUID = 1L;
public NEServiceException() {
}
public NEServiceException(String message) {
super(message);
}
public NEServiceException(String message, Throwable cause) {
super(message, cause);
}
public NEServiceException(Throwable cause) {
super(cause);
}
}