Skip to main content
summaryrefslogtreecommitdiffstats
blob: 12ba113bb3e4ecc739ce84f6c9287743bdf1f14b (plain) (blame)
1
2
3
4
5
6
7
8
9
package java.lang;

public class IllegalArgumentException extends RuntimeException {

	public IllegalArgumentException(String msg) {
		super();
	}

}

Back to the top