1 51 52 package javax.activity; 53 54 public class SystemException extends Exception { 55 56 private Exception exception; 57 58 public SystemException() { 59 60 } 61 62 public SystemException(java.lang.String errorMsg) { 63 super(errorMsg); 64 } 65 66 public SystemException(java.lang.Exception exception) { 67 this.exception = exception; 68 } 69 70 public SystemException(java.lang.String errorMsg, 71 java.lang.Exception exception) { 72 super(errorMsg); 73 this.exception = exception; 74 } 75 76 public java.lang.Exception getException() { 77 return this.exception; 78 } 79 80 81 } 82 | Popular Tags |