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