以下基本的异常:
1.NullPointerException(空指针异常)
2.IndexOutOfBoundsException(数组下标越界异常) ArrayIndexOutOfBoundsException
3.NumberFormatException(数据格式异常)
4.ClassCastException(类型转换异常)
5.IllegalArgumentException(非法参数异常)
6.ArithmeticException(算术异常)
7.IllegalStateException(非法语句异常)
非RuntimeException
ClassNotFoundException(类找不到异常)
自定义异常时应该注意应该是try或者throw,不要弄混了,还要注意与父类的声明的一致。 |