- CustomException.java 소스
public class CustomException extends Exception{ // Exception을 상속받는다.
public CustomException(){
super("나만의 Exception 입니다.");
}
public static void main(String[] args) {
}
}
- ThrowTest.java 소스
public class ThrowTest {
public static void main(String[] args) {
int a = 3;
if(a == 3){
try{
throw new CustomException();
} catch(CustomException e){
e.printStackTrace();
}
}
}
}
- 결과