为什么需要自定义异常类:
我们说了Java中的异常类,分别表示着某一种具体的异常情况,那么在开发中总是有些异常情况是SUN没有定义好的,此时我们根据自己的异常情况来定义异常类.
什么是自定义异常类:
在开发中根据自己的业务逻辑异常情况来定义异常类.
自定义一个业务逻辑异常.
异常类如何自定义:
方式1:自定义一个受检查的异常类:自定义类 并继承与java.lang.Exception.
方式2:自定义一个运行时期的异常类:自定义类,并继承于java.lang.RuntimeException.(可处理可不 处理)
示例代码:
异常类
package com.java520.exceptiondemo;
public class LogicException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
public LogicException() {
super();
// TODO Auto-generated constructor stub
}
public LogicException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public LogicException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
}
调用类:
package com.java520.exceptiondemo;
public class LogicExceptionDemo {
static String[] names = new String[]{"will","lucy","jack"};
public static void main(String[] args) {
try {
test("jack");
} catch (LogicException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println(e.getMessage());
}
System.out.println("结束");
}
private static void test(String userName) throws LogicException {
// TODO Auto-generated method stub
for (String name : names) {
if(name.equals(userName)){
throw new LogicException("该ID已经被注册");
}
}
}
}