01: package org.claros.commons.exception;
02:
03: public class SystemException extends ClarosBaseException {
04: private static final long serialVersionUID = -3342022583278439648L;
05:
06: public SystemException() {
07: super ();
08: }
09:
10: public SystemException(String errorKey) {
11: super (errorKey);
12: }
13:
14: public SystemException(Exception nestedException, String errorKey) {
15: super (nestedException, errorKey);
16: }
17:
18: public SystemException(Exception nestedException) {
19: super(nestedException);
20: }
21:
22: }
|