java抛出自定义异常
时间: 2023-06-04 18:05:10 浏览: 97
Java自定义异常
可以通过编写一个类来定义一个自定义异常,并在代码中使用 throw 语句来抛出该异常。例如:
```
public class CustomException extends Exception {
public CustomException(String message) {
super(message);
}
}
// 在代码中抛出自定义异常
try {
// some code
throw new CustomException("Something went wrong.");
} catch (CustomException e) {
System.out.println(e.getMessage());
}
```
阅读全文