1 45 package org.openejb; 46 47 73 public class SystemException extends OpenEJBException { 74 75 78 public SystemException() { 79 super(); 80 } 81 82 87 public SystemException(String message){ 88 super(message); 89 } 90 91 96 public SystemException(Throwable rootCause){ 97 super(rootCause); 98 } 99 100 108 public SystemException(String message, Throwable rootCause){ 109 super(message, rootCause); 110 } 111 112 } 113 | Popular Tags |