package java.lang; public class IllegalThreadStateException extends RuntimeException { public IllegalThreadStateException() { super(); } public IllegalThreadStateException(String s) { super(s); } }