https://www.youtube.com/watch?v=TPp7a8EqCUY public class ExceptionApp { public static void main(String[] args) { System.out.println(1); int[] scores = {10,20,30}; try { System.out.println(2); // System.out.println(scores[3]); System.out.println(3); System.out.println(2 / 0); System.out.println(4); } catch(ArithmeticException e){ System.out.println("계산이 잘못된 것 같아요."+e.getMessage()); //getMessage로 ..