开发者社区> 问答> 正文

通过继承 Exception 来实现自定义异常

通过继承 Exception 来实现自定义异常

展开
收起
珍宝珠 2020-02-13 17:34:22 1577 0
1 条回答
写回答
取消 提交回答
  • 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
    
    2020-02-13 17:34:36
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载