首页 > 编程语言 > 详细

java # 自定义异常

时间:2021-05-08 23:06:04      阅读:22      评论:0      收藏:0      [点我收藏+]

自定义异常

 技术分享图片

 

package com.study.exception;
//自定义的异常类
public class text3 extends Exception{
    //传递数字>10
    private int detail;

    public text3( int a) {

        this.detail = a;
    }

    //toString:异常的打印信息
    @Override
    public String toString() {
        return "text3{" +
                "detail=" + detail +
                ‘}‘;
    }
}

  

package com.study.exception;

public class text4 {
    static void test( int a) throws text3 {
        System.out.println("传递的参数为:"+a);
        if(a>10){
            throw new text3(a);
        }
        System.out.println("ok");
    }

    public static void main(String[] args) {
        try {
            test(11);
        } catch (com.study.exception.text3 text3) {
            System.out.println("text3"+text3);
        }
    }

}

  

2.

技术分享图片

 

 

 

java # 自定义异常

原文:https://www.cnblogs.com/chengmengdui/p/14745670.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!