用java写一个throws抛出异常的代码
时间: 2024-03-18 07:39:32 浏览: 65
C#自定义异常类throw语句抛出异常
5星 · 资源好评率100%
以下是一个简单的 Java 代码块,它使用了关键字 `throws` 抛出了一个自定义异常:
```java
public class Example {
public static void main(String[] args) throws CustomException {
// your code here
throw new CustomException("This is a custom exception.");
}
}
class CustomException extends Exception {
public CustomException(String message) {
super(message);
}
}
```
在这个例子中,`main` 方法抛出了一个 `CustomException` 异常。当 `main` 方法被调用时,调用者必须使用 `try-catch` 块来捕获这个异常或者再次使用 `throws` 把异常往上抛出。
阅读全文