CheckIDException

"Java Stuty"

Posted by Chungman on March 24, 2021

CheckIDException 예제

CheckIDException

1
2
3
4
5
6
7
8
9
10
11
12
13
14
package Java0324.Lecture13.Exception;

public class CheckIDException extends Exception {

	public CheckIDException() {
		super();
	}

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

	
}