public class Exception extends Throwable
Exception
is the superclass of all classes that represent recoverable
exceptions. When exceptions are thrown, they may be caught by application
code.Throwable
,
Error
,
RuntimeException
,
Serialized FormConstructor and Description |
---|
Exception()
Constructs a new
Exception that includes the current stack trace. |
Exception(String detailMessage)
Constructs a new
Exception with the current stack trace and the
specified detail message. |
Exception(String detailMessage,
Throwable throwable)
Constructs a new
Exception with the current stack trace, the
specified detail message and the specified cause. |
Exception(Throwable throwable)
Constructs a new
Exception with the current stack trace and the
specified cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public Exception()
Exception
that includes the current stack trace.public Exception(String detailMessage)
Exception
with the current stack trace and the
specified detail message.detailMessage
- the detail message for this exception.public Exception(String detailMessage, Throwable throwable)
Exception
with the current stack trace, the
specified detail message and the specified cause.detailMessage
- the detail message for this exception.throwable
- the cause of this exception.public Exception(Throwable throwable)
Exception
with the current stack trace and the
specified cause.throwable
- the cause of this exception.