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

public
class NoClassDefFoundError extends LinkageError {

    public NoClassDefFoundError() {
        super();
    }

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

Back to the top