예제코드ppackage ch08exception;public class MyExeption03 { public static void main(String[] args) { String xx = "aa"; first(xx); } private static void first(String xx) { second(); int x = Integer.parseInt(xx); } private static void second() { third(); } private static void third() { int i = 1, j = 0; System.out.println(i / j); ..