mirror of
https://github.com/geekwenjie/SmartJavaAI.git
synced 2026-09-15 14:33:03 +00:00
临时提交
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user