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

java 判断是不是检查性异常

时间:2014-10-16 06:16:22      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   java   sp   div   on   

    /**
     * Return whether the given throwable is a checked exception:
     * that is, neither a RuntimeException nor an Error.
     * @param ex the throwable to check
     * @return whether the throwable is a checked exception
     * @see java.lang.Exception
     * @see java.lang.RuntimeException
     * @see java.lang.Error
     */
    public static boolean isCheckedException(Throwable ex) {
        return !(ex instanceof RuntimeException || ex instanceof Error);
    }

 

java 判断是不是检查性异常

标签:style   blog   color   io   ar   java   sp   div   on   

原文地址:http://www.cnblogs.com/ghgyj/p/4027896.html

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