java.lang.Object
java.lang.Throwable
java.lang.Exception
-
所有已实现的接口:
-
Serializable
-
直接已知子类:
-
AclNotFoundException,
ActivationException,
AlreadyBoundException,
ApplicationException,
AWTException,
BackingStoreException,
BadAttributeValueExpException,
BadBinaryOpValueExpException,
BadLocationException,
BadStringOperationException,
BrokenBarrierException,
CertificateException,
ClassNotFoundException,
CloneNotSupportedException,
DataFormatException,
DatatypeConfigurationException,
DestroyFailedException,
ExecutionException,
ExpandVetoException,
FontFormatException,
GeneralSecurityException,
GSSException,
IllegalAccessException,
IllegalClassFormatException,
InstantiationException,
InterruptedException,
IntrospectionException,
InvalidApplicationException,
InvalidMidiDataException,
InvalidPreferencesFormatException,
InvalidTargetObjectTypeException,
InvocationTargetException,
IOException,
JAXBException,
JMException,
KeySelectorException,
LastOwnerException,
LineUnavailableException,
MarshalException,
MidiUnavailableException,
MimeTypeParseException,
MimeTypeParseException,
NamingException,
NoninvertibleTransformException,
NoSuchFieldException,
NoSuchMethodException,
NotBoundException,
NotOwnerException,
ParseException,
ParserConfigurationException,
PrinterException,
PrintException,
PrivilegedActionException,
PropertyVetoException,
RefreshFailedException,
RemarshalException,
RuntimeException,
SAXException,
ScriptException,
ServerNotActiveException,
SOAPException,
SQLException,
TimeoutException,
TooManyListenersException,
TransformerException,
TransformException,
UnmodifiableClassException,
UnsupportedAudioFileException,
UnsupportedCallbackException,
UnsupportedFlavorException,
UnsupportedLookAndFeelException,
URIReferenceException,
URISyntaxException,
UserException,
XAException,
XMLParseException,
XMLSignatureException,
XMLStreamException,
XPathException
-
public class Exception
-
extends
Throwable
Exception
类及其子类是 Throwable
的一种形式,它指出了合理的应用程序想要捕获的条件。
-
从以下版本开始:
-
JDK1.0
-
另请参见:
-
Error
,
序列化表格
从类 java.lang.Throwable 继承的方法 |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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)
-
构造带指定详细消息和原因的新异常。
注意,与 cause
相关的详细消息不是 自动合并到这个异常的详细消息中的。
-
参数:
-
message
- 详细消息(保存此消息,以便以后通过
Throwable.getMessage()
方法获取它)。
-
cause
- 原因(保存此原因,以便以后通过
Throwable.getCause()
方法获取它)。 (允许使用
null 值,指出原因不存在或者是未知的。)
-
从以下版本开始:
-
1.4
Exception
public Exception(Throwable cause)
-
根据指定的原因和
(cause==null ? null : cause.toString()) 的详细消息构造新异常(它通常包含
cause 的类和详细消息)。对于那些与其他可抛出异常(例如,
PrivilegedActionException
)的包装器相同的异常,此构造方法很有用。
-
参数:
-
cause
- 原因(保存此原因,以便以后通过
Throwable.getCause()
方法获取它)。 (允许使用
null 值,指出原因不存在或者是未知的。)
-
从以下版本开始:
-
1.4