first commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package wenrgise.common.exception;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class EnrgiseSystemException extends BaseException implements Serializable {
|
||||
private Exception oRootCause;
|
||||
|
||||
public EnrgiseSystemException() {}
|
||||
|
||||
public EnrgiseSystemException(Exception oExcp) {
|
||||
this.oRootCause = oExcp;
|
||||
}
|
||||
|
||||
public EnrgiseSystemException(String sKey, Exception oExcp) {
|
||||
super(sKey);
|
||||
this.oRootCause = oExcp;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user