mirror of
https://github.com/geekwenjie/SmartJavaAI.git
synced 2026-09-13 13:18:58 +00:00
30 lines
645 B
Java
30 lines
645 B
Java
|
|
package cn.smartjavaai.action.exception;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 动作检测异常
|
||
|
|
* @author dwj
|
||
|
|
*/
|
||
|
|
public class ActionException extends RuntimeException{
|
||
|
|
|
||
|
|
public ActionException() {
|
||
|
|
super();
|
||
|
|
}
|
||
|
|
|
||
|
|
public ActionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
|
||
|
|
super(message, cause, enableSuppression, writableStackTrace);
|
||
|
|
}
|
||
|
|
|
||
|
|
public ActionException(String message, Throwable cause) {
|
||
|
|
super(message, cause);
|
||
|
|
}
|
||
|
|
|
||
|
|
public ActionException(String message) {
|
||
|
|
super(message);
|
||
|
|
}
|
||
|
|
|
||
|
|
public ActionException(Throwable cause) {
|
||
|
|
super(cause);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|