创建我们自己的自定义异常,抛出或抛出或尝试&抓住?

时间:2018-02-18 09:01:54

标签: java try-catch throw throws

Java中的

如果我们想创建自己的自定义异常,我们应该使用哪个关键字?

扔掉或抛出或尝试&捉?

1 个答案:

答案 0 :(得分:1)

您需要创建一个扩展类Exception的新类。 Throws关键字用于表示当前类传播异常,throw关键字用于启动传播,try catch确定捕获异常的块。

 public class MyClass extend Exception {
         public MyClass(String msg)
             super(msg);
}