public class TaskException extends Exception
Constructor and Description |
---|
TaskException()
Constructs a new Exception with no message an no cause.
|
TaskException(String s)
Constructs a new Exception with given message.
|
TaskException(String s,
Throwable t)
Constructs a new Exception with the given message an cause.
|
TaskException(Throwable t)
Constructs a new Exception with the given cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public TaskException()
public TaskException(String s, Throwable t)
s
- The message.t
- The cause.public TaskException(Throwable t)
t
- The cause.public TaskException(String s)
s
- The message.