Package com.glitchybyte.zappy
Class ZappyParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.glitchybyte.zappy.ZappyParseException
- All Implemented Interfaces:
Serializable
Exception for when a parsing error occurs.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionZappyParseException
(String message) Creates a parse exception with a message.ZappyParseException
(Throwable cause) Creates a parse exception from another exception in the process. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ZappyParseException
Creates a parse exception with a message.- Parameters:
message
- Message to attach to the exception.
-
ZappyParseException
Creates a parse exception from another exception in the process.- Parameters:
cause
- The exception that triggered the problem.
-