码迷,mamicode.com
首页 > 编程语言 > 详细

Java 自定义异常类

时间:2017-04-03 22:16:26      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:sys   check   bsp   trace   异常   exception   user   cep   system   

类1:public class LogicException extends RuntimeException {
    //业务逻辑异常
    /**
     *
     * @param message 异常信息
     */
    public LogicException(String message) {
        super(message);
    }
    /**
     *
     * @param message 异常信息
     * @param cause  当前异常的根本原因
     */
        public LogicException(String message, Throwable cause) {
            super(message, cause);
        }
    
}
类2:private static String[] arr={"张三","小张","小明","李四"};
    public static void main(String[] args) {
        try {
            checkUsername("张三");
        } catch (LogicException e) {
            String errorMsg=e.getMessage();
            System.out.println("给用户看"+errorMsg);
        }
        
    }
    private static Boolean checkUsername(String username){
        for (String name : arr) {
            if(name.equals(username)){
                throw new LogicException("很抱歉,"+username+"已经注册了!");
            }
        }
        System.out.println("注册成功!");
        return true;
    }

}
[总结] 1.自定义异常: class 异常类名 extends Exception { public 异常类名(String msg) { super(msg); } } 2.标识可能抛出的异常: throws 异常类名1,异常类名2 3.捕获异常: try{} catch(异常类名 y){} catch(异常类名 y){} 4.方法解释 getMessage() //输出异常的信息 printStackTrace() //输出导致异常更为详细的信息

 

Java 自定义异常类

标签:sys   check   bsp   trace   异常   exception   user   cep   system   

原文地址:http://www.cnblogs.com/jiangxifanzhouyudu/p/6663653.html

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