public class TestException extends IllegalArgumentException {
    public TestException() {
    }

    public TestException(String s) {
        super(s);
    }
}
