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