Package com.demonwav.hypo.core
Class HypoException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.demonwav.hypo.core.HypoException
- All Implemented Interfaces:
Serializable
Generic checked exception for Hypo execution errors.
- See Also:
- Serialized Form
-
Constructor Summary
ConstructorsConstructorDescriptionHypoException(String message)Constructor forHypoExceptionwith a message.HypoException(String message, Throwable cause)Constructor forHypoExceptionwith a message and a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HypoException
Constructor forHypoExceptionwith a message.- Parameters:
message- The message for this exception.
-
HypoException
Constructor forHypoExceptionwith a message and a cause.- Parameters:
message- The message for this exception.cause- The cause of this exception.
-