public class ContractException extends RuntimeException
Constructor and Description |
---|
ContractException() |
ContractException(String message)
Sets a message for the
Exception . |
ContractException(String message,
Throwable originalException)
Sets the stack trace to the original exception, so this exception can
masquerade as the original only be a
RuntimeException . |
ContractException(Throwable originalException)
Sets the stack trace to the original exception, so this exception can
masquerade as the original only be a
RuntimeException . |
Modifier and Type | Method and Description |
---|---|
void |
rethrow()
Re-throw the original exception.
|
static RuntimeException |
wrap(Throwable ex)
If
Exception parameter passed in is a RuntimeException it
is simply returned. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public ContractException()
public ContractException(String message)
Exception
.message
- passed to the RuntimeException
message.public ContractException(Throwable originalException)
RuntimeException
.originalException
- the original exception adapted to RuntimeException
.public ContractException(String message, Throwable originalException)
RuntimeException
.message
- originalException
- the original exception adapted to RuntimeException
.public void rethrow() throws Throwable
public static RuntimeException wrap(Throwable ex)
Exception
parameter passed in is a RuntimeException
it
is simply returned. Otherwise the Exception
is wrapped in a
ContractException
and returned.ex
- Exception to wrap or cast and return.RuntimeException
that either
is the specified exception
or contains the specified exception.Copyright © 2022. All rights reserved.