package java.lang; public class InterruptedException extends Exception { public InterruptedException() { super(); } public InterruptedException(String s) { super(s); } }