鸿蒙OS Exception
Exception
java.lang.Object
|---java.lang.Throwable
|---|---java.lang.Exception
public class Exception
extends Throwable
类 Exception 及其子类是 Throwable 的一种形式,它指示合理的应用程序可能想要捕获的条件。
类 Exception 和任何不是 RuntimeException 子类的子类都是检查异常。 如果检查的异常可以通过方法或构造函数的执行抛出并传播到方法或构造函数边界之外,则需要在方法或构造函数的 throws 子句中声明它们。
构造函数摘要
修饰符 | 构造函数 | 描述 |
---|---|---|
Exception() | 构造一个以 null 作为其详细消息的新异常。 | |
Exception(String message) | 使用指定的详细消息构造一个新异常。 | |
Exception(String message, Throwable cause) | 使用指定的详细消息和原因构造一个新异常。 | |
protected | Exception(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) | 使用指定的详细消息、原因、启用或禁用抑制以及启用或禁用可写堆栈跟踪构造一个新异常。 |
Exception(Throwable cause) | 构造一个具有指定原因的新异常和 (cause==null ? null : cause.toString()) 的详细消息(通常包含原因的类和详细消息)。 |
方法总结
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
从类 java.lang.Throwable 继承的方法 |
---|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
构造函数详细信息
Exception
public Exception()
构造一个以 null 作为其详细消息的新异常。 原因未初始化,随后可能通过调用 Throwable.initCause(java.lang.Throwable) 进行初始化。
Exception
public Exception(String message)
使用指定的详细消息构造一个新异常。 原因未初始化,随后可能通过调用 Throwable.initCause(java.lang.Throwable) 进行初始化。
参数:
参数名称 | 参数描述 |
---|---|
message | 详细信息。 保存详细消息以供 Throwable.getMessage() 方法稍后检索。 |
Exception
public Exception(String message, Throwable cause)
使用指定的详细消息和原因构造一个新异常。
请注意,与原因相关的详细消息不会自动合并到此异常的详细消息中。
参数:
参数名称 | 参数描述 |
---|---|
message | 详细消息(保存以供 Throwable.getMessage() 方法稍后检索)。 |
cause | 原因(由 Throwable.getCause() 方法保存以供以后检索)。 (允许使用空值,表示原因不存在或未知。) |
Exception
public Exception(Throwable cause)
构造一个具有指定原因的新异常和 (cause==null ? null : cause.toString()) 的详细消息(通常包含原因的类和详细消息)。 此构造函数对于仅是其他 throwable 的包装器(例如 PrivilegedActionException)的异常非常有用。
参数:
参数名称 | 参数描述 |
---|---|
cause | 原因(由 Throwable.getCause() 方法保存以供以后检索)。 (允许使用空值,表示原因不存在或未知。) |
Since:
1.4
Exception
protected Exception(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
使用指定的详细消息、原因、启用或禁用抑制以及启用或禁用可写堆栈跟踪构造一个新异常。
参数:
参数名称 | 参数描述 |
---|---|
message | 详细信息。 |
cause | 原因。 (允许使用空值,表示原因不存在或未知。) |
enableSuppression | 是否启用或禁用抑制 |
writableStackTrace | 堆栈跟踪是否应该是可写的 |