1 23 24 package javax.resource.spi; 25 26 39 40 public class ResourceAllocationException 41 extends javax.resource.ResourceException { 42 43 46 public ResourceAllocationException() { super(); } 47 48 53 public ResourceAllocationException(String message) { 54 super(message); 55 } 56 57 62 public ResourceAllocationException(Throwable cause) { 63 super(cause); 64 } 65 66 73 public ResourceAllocationException(String message, Throwable cause) { 74 super(message, cause); 75 } 76 77 84 public ResourceAllocationException(String message, String errorCode) { 85 super(message, errorCode); 86 } 87 } 88 | Popular Tags |