init: 仓库初始化.

This commit is contained in:
2024-12-28 21:57:03 +08:00
commit 682266b591
23 changed files with 1947 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
package com.serliunx.statemanagement.exception;
/**
* @author <a href="mailto:serliunx@yeah.net">SerLiunx</a>
* @version 1.0.0
* @since 2024/12/28
*/
public class StateException extends RuntimeException {
public StateException() {
}
public StateException(String message) {
super(message);
}
public StateException(String message, Throwable cause) {
super(message, cause);
}
public StateException(Throwable cause) {
super(cause);
}
public StateException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}