1 16 package java.lang; 17 18 22 public class IllegalStateException extends RuntimeException { 23 24 public IllegalStateException() { 25 } 26 27 public IllegalStateException(String s) { 28 super(s); 29 } 30 31 public IllegalStateException(String message, Throwable cause) { 32 super(message, cause); 33 } 34 35 public IllegalStateException(Throwable cause) { 36 super(cause); 37 } 38 39 } 40 | Popular Tags |