1 23 24 package javax.resource.spi; 25 26 37 38 public class EISSystemException extends javax.resource.ResourceException { 39 40 43 public EISSystemException() { super(); } 44 45 50 public EISSystemException(String message) { 51 super(message); 52 } 53 54 59 public EISSystemException(Throwable cause) { 60 super(cause); 61 } 62 63 70 public EISSystemException(String message, Throwable cause) { 71 super(message, cause); 72 } 73 74 81 public EISSystemException(String message, String errorCode) { 82 super(message, errorCode); 83 } 84 } 85 | Popular Tags |