- Exception - Exception in java.lang
-
Exception is the superclass of all classes that represent recoverable
exceptions.
- Exception() - Constructor for exception java.lang.Exception
-
Constructs a new Exception that includes the current stack trace.
- Exception(String) - Constructor for exception java.lang.Exception
-
Constructs a new Exception with the current stack trace and the
specified detail message.
- Exception(String, Throwable) - Constructor for exception java.lang.Exception
-
Constructs a new Exception with the current stack trace, the
specified detail message and the specified cause.
- Exception(Throwable) - Constructor for exception java.lang.Exception
-
Constructs a new Exception with the current stack trace and the
specified cause.
- Exception(String, Throwable, boolean, boolean) - Constructor for exception java.lang.Exception
-
Constructs a new exception with the specified detail message,
cause, suppression enabled or disabled, and writable stack
trace enabled or disabled.