public class RuntimeException extends 异常
RuntimeException
是在Java虚拟机的正常操作期间可以抛出的那些异常的超类。
RuntimeException
及其子类是未经检查的异常 。 unchecked异常不需要在方法或构造函数的拟申报throws
条款,如果他们可以通过该方法或构造函数的执行被抛出和方法或构造边界之外传播。
Modifier | Constructor and Description |
---|---|
|
RuntimeException()
构造一个新的运行时异常,以
null 作为其详细信息。
|
|
RuntimeException(String message)
使用指定的详细消息构造新的运行时异常。
|
|
RuntimeException(String message, Throwable cause)
构造一个新的运行时异常与指定的详细信息和原因。
|
protected |
RuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
构造一个新的运行时异常,其中包含指定的详细消息,启用或禁用抑制,启用或禁用可写栈跟踪。
|
|
RuntimeException(Throwable cause)
构造具有指定的原因和
(cause==null ? null : cause.toString())详细消息(它通常包含的
cause类和详细信息)的新的运行时异常。
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public RuntimeException()
null
作为其详细信息。
原因未初始化,随后可以通过调用Throwable.initCause(java.lang.Throwable)
进行初始化 。
public RuntimeException(String message)
Throwable.initCause(java.lang.Throwable)
进行初始化 。
message
- 详细信息。
保存详细信息以供稍后通过Throwable.getMessage()
检索 。
public RuntimeException(String message, Throwable cause)
请注意,与cause
关联的详细消息不会自动并入此运行时异常的详细消息。
message
- 详细信息(保存以供稍后通过
Throwable.getMessage()
方法
检索 )。
cause
- 原因(保存以供稍后通过Throwable.getCause()
方法检索 )。
( 允许 A null值,并表示原因不存在或未知。)
public RuntimeException(Throwable cause)
cause
- 原因(由Throwable.getCause()
方法保存供以后检索)。
( 允许 A null值,并表示原因不存在或未知。)
protected RuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
message
- 详细信息。
cause
- 原因。
( null
A null
值,并表示原因不存在或未知。)
enableSuppression
- 是否启用或禁用抑制功能
writableStackTrace
- 堆栈跟踪是否可写
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.