码迷,mamicode.com
首页 > 其他好文 > 详细

自定义异常

时间:2017-07-24 18:54:01      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:str   throw   exception   xtend   int   异常   ring   message   new   

1. 编写类,该类继承Exception

public class MyException extends Exception{
    private static final long serialVersionUID = -9146349104405752896L;
    
    public MyException(){
        super();
    }
    
    public MyException(String message){
        super(message);
    }
    
}

2. 编写测试类:

public class TestException {
    
    public static void getAge(int i) throws MyException{
        if(i > 10){
            throw new MyException("不能大于10");
        }
    }
    
    public static void main(String[] args) {
        try {
            getAge(11);
        } catch (MyException e) {
            e.printStackTrace();
        }
    }
}

3. 返回结果为:

技术分享

 

自定义异常

标签:str   throw   exception   xtend   int   异常   ring   message   new   

原文地址:http://www.cnblogs.com/beibidewomen/p/7230044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!