Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5e4ffa680d59a52aff23bf23120be616ce8d7958 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package java.lang;
public
class NullPointerException extends RuntimeException {
    public NullPointerException() {
        super();
    }

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

Back to the top