throw의 기초 이해.package ch08exception;public class MyExeption03 { public static void main(String[] args) { try { Thread.sleep(3000); } catch (InterruptedException e) { throw new RuntimeException(e); } try { String xx = "aa"; first(xx); }catch (ArithmeticException ex){//예외처리 떠넘기기. third의 예외를 main에게 떠넘기 Syst..