다음 예에서는 예외를 상속하여 사용자 정의 예외를 구현하는 방법을 보여줍니다.
/* author by w3cschool.cc TestInput.java */ class WrongInputException extends Exception { WrongInputException(String s) { super(s); } } class Input { void method() throws WrongInputException { throw new WrongInputException("Wrong input"); } } class TestInput { public static void main(String[] args){ try { new Input().method(); } catch(WrongInputException wie) { System.out.println(wie.getMessage()); } } }
위 코드를 실행한 결과는 다음과 같습니다.
Wrong input
위는 Java 예입니다. 사용자 정의 예외 내용, 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트(www.php.cn)를 참고하세요!