public class TestSwingException extends Exception { private static final long serialVersionUID = 1L; public TestSwingException() { super(); } public TestSwingException(String message) { super(message); } public TestSwingException(String message, Throwable cause) { super(message, cause); } public TestSwingException(Throwable cause) { super(cause); } }