public class XatkitException extends RuntimeException
This exception is used to wrap internal Exceptions and return them in a unified way to client applications.
| Modifier | Constructor and Description |
|---|---|
|
XatkitException()
Constructs a new
XatkitException. |
|
XatkitException(String message)
Constructs a new
XatkitException from the provided message. |
|
XatkitException(String message,
Throwable cause)
|
protected |
XatkitException(String message,
Throwable cause,
boolean enableSuppression,
boolean writableStackTrace)
Constructs a new
XatkitException from the provided message, cause, enableSuppression, and writableStackTrace. |
|
XatkitException(Throwable cause)
Constructs a new
XatkitException from the provided cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic XatkitException()
XatkitException.RuntimeException.RuntimeException()public XatkitException(String message)
XatkitException from the provided message.message - the exception's messageRuntimeException.RuntimeException(String)public XatkitException(String message, Throwable cause)
message - the exception's messagecause - the exception's causeRuntimeException.RuntimeException(String, Throwable)public XatkitException(Throwable cause)
XatkitException from the provided cause.cause - the exception's causeRuntimeException.RuntimeException(Throwable)protected XatkitException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
XatkitException from the provided message, cause, enableSuppression, and writableStackTrace.message - the exception's messagecause - the exception's causeenableSuppression - whether or not suppression is enabledwritableStackTrace - whether or not the stack trace should be writableRuntimeException.RuntimeException(String, Throwable, boolean, boolean)Copyright © 2020 SOM Research Lab. All rights reserved.