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

自定义异常

时间:2021-06-02 19:45:45      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ram   ring   detail   rms   const   ons   定义   param   异常   

1.自定义异常

public class CreateFailedException extends RuntimeException{

    public CreateFailedException(String errMsg) {
        super(errMsg);
    }

    /**
     * Construct a new runtime exception with the cause
     *
     * @param cause cause
     */
    public CreateFailedException(Throwable cause) {
        super(cause);
    }

    /**
     * Construct a new runtime exception with the detail message and cause
     *
     * @param errMsg message
     * @param cause cause
     */
    public CreateFailedException(String errMsg, Throwable cause) {
        super(errMsg, cause);
    }
}

自定义异常

标签:ram   ring   detail   rms   const   ons   定义   param   异常   

原文地址:https://www.cnblogs.com/PythonOrg/p/14836445.html

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