1 23 24 package javax.resource.spi; 25 26 38 39 public class ApplicationServerInternalException 40 extends javax.resource.ResourceException { 41 42 45 public ApplicationServerInternalException() { super(); } 46 47 52 public ApplicationServerInternalException(String message) { 53 super(message); 54 } 55 56 62 public ApplicationServerInternalException(Throwable cause) { 63 super(cause); 64 } 65 66 74 public ApplicationServerInternalException( 75 String message, Throwable cause) { 76 super(message, cause); 77 } 78 79 86 public ApplicationServerInternalException( 87 String message, String errorCode) { 88 super(message, errorCode); 89 } 90 } 91 | Popular Tags |