반응형
import java.util.Scanner;
class NewException extends Exception
{
String reason;
public NewException(String reason)
{
this.reason = reason;
}
public String toString()
{
return reason;
}
}
public class ExcepTest5
{
public static void method() throws Exception
{
throw new NewException(" 사용자 정의 예외 발생");
}
public static void main(String[] args)
{
try
{
method();
}
catch(Exception e)
{
System.out.println(e);
}
System.out.println("예외처리를 하였기에 정상 종료함");
}
}
반응형
'About 프로그래밍!!! > JAVA' 카테고리의 다른 글
[java]1~10까지의 수를 집어넣고 2의 배수만 1씩 더하기 (0) | 2010.08.24 |
---|---|
[java]ArrayList 객체 생성.(A~F까지 넣기) (0) | 2010.08.24 |
[java]throws (0) | 2010.08.23 |
[java]try-catch-finally로 예외처리 (0) | 2010.08.23 |
[java] 생성자 만들기 예제. (0) | 2010.08.17 |