Constructors
| Name | Description | 
|---|---|
| Throwable() | Constructs a new Throwable with no detail message. | 
| Throwable(String) | Constructs a new Throwable with the specified detail message. | 
Methods
| Name | Description | 
|---|---|
| fillInStackTrace() | Fills in the execution stack trace. | 
| getLocalizedMessage() | Creates a localized description of this Throwable. | 
| getMessage() | Returns the detail message of this throwable object. | 
| printStackTrace() | Prints this Throwable and its backtrace to the standard error stream. | 
| printStackTrace(PrintStream) | Prints this Throwable and its backtrace to the specified print stream. | 
| printStackTrace(PrintWriter) | Prints this Throwable and its backtrace to the specified print writer. | 
| toString() | Returns a short description of this throwable object. |