Package com.spec.web.expresso.exceptions
Class ExpressoRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.spec.web.expresso.exceptions.ExpressoRuntimeException
- All Implemented Interfaces:
Serializable
Custom exception to handle runtime exceptions in Expresso.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionExpressoRuntimeException(String message) Constructs a Exception with the message as String.ExpressoRuntimeException(Throwable throwable) Constructs a Exception with the message from a throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExpressoRuntimeException
Constructs a Exception with the message as String.- Parameters:
message- Error message
-
ExpressoRuntimeException
Constructs a Exception with the message from a throwable.- Parameters:
throwable- Uses another throwable to construct an excepion.
-