예외처리 기본 예제
public class ExceptionTest {
public static void main(String[] args) {
try{
int i = Integer.parseInt(args[0]);
int j = Integer.parseInt(args[1]);
System.out.println(i/j);
}
catch (ArithmeticException e) {
e.printStackTrace();
System.out.println("0을 입력하지 마시오");
}
System.out.println("완료");
}
}