throw throws 역할 명시적으로 exception을 발생 exception을 선언 문법 throw + instance throws + class 위치 used in method used with method signatures 제한 한 번에 하나의 exception만 발생 가능 한 번에 여러 개의 exception 등록 가능 아래의 예제 코드는 의미만 통할 수 있게 작성했습니다. class ExceptionTest { method main { try { MakeException; } catch(MadeException e) { println("MadeException Found"); } finally { println("In this example, [finally] is not required...