Java's Checked Exceptions Defined in java.lang : 例外 « 开发相关 « 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. 4. Java's Checked Exceptions Defined in java.lang
Exception                          Meaning

ClassNotFoundException             Class not found.

CloneNotSupportedException         Attempt to clone an object that does not implement the Cloneable interface.

IllegalAccessException             Access to a class is denied.

InstantiationException             Attempt to create an object of an abstract class or interface.

InterruptedException               One thread has been interrupted by another thread.

NoSuchFieldException               A requested field does not exist.

NoSuchMethodException              A requested method does not exist.
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.