自定义异常类继承RuntimeException,接口返回200 的代码
时间: 2024-04-12 09:27:08 浏览: 111
你可以创建一个自定义异常类,并使其继承自RuntimeException类。下面是一个示例:
```java
public class CustomException extends RuntimeException {
public CustomException(String message) {
super(message);
}
}
```
在上述的自定义异常类中,我们重写了RuntimeException的构造方法,并在构造方法中传递异常信息给父类。
当你在代码中需要抛出该自定义异常时,可以这样做:
```java
public class Example {
public static void main(String[] args) {
try {
// ... 一些代码
throw new CustomException("发生了自定义异常");
} catch (CustomException e) {
e.printStackTrace();
}
}
}
```
这样,当发生自定义异常时,你可以捕获并处理它。
阅读全文