Das folgende Beispiel zeigt die Implementierung benutzerdefinierter Ausnahmen durch Erben von 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()); } } }
Das Ausgabeergebnis der Ausführung des obigen Codes ist:
Wrong input
Das Obige ist das Java-Beispiel - seit Definieren Sie abnormale Inhalte. Weitere verwandte Inhalte finden Sie auf der chinesischen PHP-Website (www.php.cn)!