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.
xian/ServiceException.java

20 lines
509 B

package com.power.travel.core;
/**
* INFO @see WebMvcConfiguration
*/
public class ServiceException extends RuntimeException {
private static final long serialVersionUID = 2987069302761521237L;
public ServiceException() {
}
public ServiceException(String message) {
super(message);
}
public ServiceException(String message, Throwable cause) {
super(message, cause);
}
}