在Java中,编写简单的自定义异常类非常简单。只需按照以下步骤操作:
public class CustomException extends Exception {
// 自定义异常类的代码...
}
public class CustomException extends Exception {
public CustomException(String message) {
super(message);
}
}
throw
关键字抛出自定义异常。public void doSomething() throws CustomException {
// 某些代码...
throw new CustomException("发生了自定义异常");
}
try-catch
块来捕获并处理异常。public static void main(String[] args) {
try {
doSomething();
} catch (CustomException e) {
System.out.println(e.getMessage());
}
}
这就是编写简单的自定义异常类的基本步骤。你可以根据实际需求扩展自定义异常类的功能,例如添加其他构造方法、添加其他自定义方法等。