public class ThreadException extends RuntimeException
| Constructor and Description |
|---|
ThreadException()
Initializes a new instance.
|
ThreadException(Error innerException)
Initializes a new instance.
|
ThreadException(RuntimeException innerException)
Initializes a new instance.
|
ThreadException(String message)
Initializes a new instance.
|
ThreadException(String message,
Error innerException)
Initializes a new instance.
|
ThreadException(String message,
RuntimeException innerException)
Initializes a new instance.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ThreadException()
public ThreadException(String message)
message - The message of the exception.public ThreadException(String message, RuntimeException innerException)
message - The message of the exception.innerException - The actual exception that occurred in the thread.public ThreadException(RuntimeException innerException)
innerException - The actual exception that occurred in the thread.public ThreadException(String message, Error innerException)
message - The message of the exception.innerException - The actual exception that occurred in the thread.public ThreadException(Error innerException)
innerException - The actual exception that occurred in the thread.