Add ServiceException.java

wuxinrui
pho6e2qjw 5 months ago
parent 3be168b3b2
commit 7ccbfdd628

@ -0,0 +1,19 @@
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);
}
}
Loading…
Cancel
Save