1 5 6 package javax.resource.spi; 7 8 18 19 public class IllegalStateException extends javax.resource.ResourceException { 20 21 24 public IllegalStateException() { super(); } 25 26 31 public IllegalStateException(String message) { 32 super(message); 33 } 34 35 40 public IllegalStateException(Throwable cause) { 41 super(cause); 42 } 43 44 51 public IllegalStateException(String message, Throwable cause) { 52 super(message, cause); 53 } 54 55 62 public IllegalStateException(String message, String errorCode) { 63 super(message, errorCode); 64 } 65 } 66 | Popular Tags |