This commit is contained in:
Rinjae
2025-09-05 18:57:45 +09:00
commit aacc1a389e
1229 changed files with 167963 additions and 0 deletions
@@ -0,0 +1,17 @@
package com.eactive.eai.common.state;
public class ElinkStateException extends Exception {
private static final long serialVersionUID = 1L;
public ElinkStateException(String msg) {
super(msg);
}
public ElinkStateException(Throwable cause) {
super(cause);
}
public ElinkStateException(String msg, Throwable cause) {
super(msg, cause);
}
}