Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 486e5339dcfa86f631e39967e63c2a1b0e259e6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package java.lang;

public
class NoSuchFieldError extends IncompatibleClassChangeError {

    public NoSuchFieldError() {
        super();
    }

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

Back to the top