欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  Java

Java 实例 - 自定义异常

程序员文章站 2022-05-18 22:24:35
...
以下实例演示了通过继承 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中文网(www.php.cn)!


相关标签: Java,自定义异常