Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0860c679050d1c86e75aa7c81399b1c560d07aec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

package java.lang;

public class ReflectiveOperationException extends Exception {
    static final long serialVersionUID = 123456789L;

    public ReflectiveOperationException() {
        super();
    }

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

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

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

	public java.lang.Throwable getCause() {
		return getCause();
	}
}

Back to the top