aboutsummaryrefslogtreecommitdiff
path: root/website/usageExamples/StandardExceptionExample_post.jpage
blob: 148603a9f273d660196c8a50b1b12167b7be9f46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class ExampleException extends Exception {
    public ExampleException() {
    }

    public ExampleException(String message) {
        super(message);
    }

    public ExampleException(Throwable cause) {
        super(cause);
    }

    public ExampleException(String message, Throwable cause) {
        super(message, cause);
    }
}