次の例は、Exception を継承することによるカスタム例外の実装を示しています:
/* 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 中国語 Web サイト (www .php.cn) に注意してください。