Java检查RuntimeException子类 : 例外 « 开发相关 « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » 开发相关 » 例外 
6. 23. 3. Java检查RuntimeException子类
Exception                         Meaning

ArithmeticException               Arithmetic error, such as divide-by-zero.

ArrayIndexOutOfBoundsException    Array index is out-of-bounds.

ArrayStoreException               Assignment to an array element of an incompatible type.

ClassCastException                Invalid cast.

IllegalArgumentException          Illegal argument used to invoke a method.

IllegalMonitorStateException      Illegal monitor operation, such as waiting on an unlocked thread.

IllegalStateException             Environment or application is in incorrect state.

IllegalThreadStateException       Requested operation not compatible with current thread state.

IndexOutOfBoundsException         Some type of index is out-of-bounds.

NegativeArraySizeException        Array created with a negative size.

NullPointerException              Invalid use of a null reference.

NumberFormatException             Invalid conversion of a string to a numeric format.

SecurityException                 Attempt to violate security.

StringIndexOutOfBounds            Attempt to index outside the bounds of a string.

TypeNotPresentException           Type not found. (Added by J2SE 5.)

UnsupportedOperationException     An unsupported operation was encountered.
6. 23. 例外
6. 23. 1. 错误处理
6. 23. 2. 例外类型
6. 23. 3. Java检查RuntimeException子类
6. 23. 4. Java's Checked Exceptions Defined in java.lang
6. 23. 5. 抛出一个异常的方法
6. 23. 6. catch块来处理java.lang.Exception
6. 23. 7. 例外处理
6. 23. 8. 多个catch
6. 23. 9. finally块
6. 23. 10. 例外对象:堆栈跟踪
6. 23. 11. 确定你自己的例外,使你自己的异常
6. 23. 12. 例外链接。
6. 23. 13. 使用堆栈跟踪的一个例外情况
6. 23. 14. Put printStackTrace() into a String: redirect the StackTrace to a String with a StringWriter/PrintWriter
6. 23. 15. 这个程序会创建一个自定义异常类型。
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.