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

public class RuntimeException extends Exception {

	public RuntimeException(java.lang.String s) {
		// TODO Auto-generated constructor stub
	}

	public RuntimeException() {
		// TODO Auto-generated constructor stub
	}
}

Back to the top