22 lines
470 B
Java
22 lines
470 B
Java
|
package weaver.xiao.commons.exception;
|
||
|
|
||
|
/**
|
||
|
* @author XiaoBokang
|
||
|
* @create 2022/1/12 11:06
|
||
|
*/
|
||
|
|
||
|
public class RequestException extends RuntimeException{
|
||
|
public RequestException(String message){
|
||
|
super(message);
|
||
|
}
|
||
|
|
||
|
public RequestException(String message, Throwable cause) {
|
||
|
super(message, cause);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public synchronized Throwable fillInStackTrace() {
|
||
|
return super.fillInStackTrace();
|
||
|
}
|
||
|
}
|