美文网首页
自定义异常??

自定义异常??

作者: 地表最强程序员小白 | 来源:发表于2017-11-17 21:16 被阅读2次
import java.util.*;
public class exceptionsTest{
    static void f()throws Myexception{
        g();
    }
    static void g()throws Myexception{
        h();
    }
    static void h()throws Myexception{
        throw new Myexception("wocao");
    }
    public static void main(String[] args){
        try{
            f();
            //throw new Myexception("wocao");          
             如果实在f函数抛出自定义异常的话需要声明?(throws)  如果是在try中抛出 就不用
        }catch(Exception a){
            a.printStackTrace();
        }
    }
}
class Myexception extends Exception {
    public Myexception() {
    }
    public Myexception(String s){
        super(s);
    }
}

相关文章

网友评论

      本文标题:自定义异常??

      本文链接:https://www.haomeiwen.com/subject/fplsvxtx.html