Java代码如何自定义异常处理呢?
实现思路:
自定义异常类,需继承Exception类实现一个自定义异常显示
例:
class CustomSetException extends Exception {
CustomSetException(String s) {
super(s);
}
}
class testClass{
void method() throws CustomSetException {
throw new CustomSetException ("我是一个自定义异常");
}
}
class testClass2 {
public static void main(String[] args){
try {
new testClass().method();
}
catch(CustomSetException t) {
System.out.println(t.getMessage());
}
}
}
-----运行以上代码,将输出以下信息----
我是一个自定义异常
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。