Package com.helixframework.delta
Class InvalidJsonException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.helixframework.delta.InvalidJsonException
- All Implemented Interfaces:
Serializable
Thrown when JSON input cannot be parsed into a Jackson tree.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidJsonException(String message) Creates an exception with a parse failure message.InvalidJsonException(String message, Throwable cause) Creates an exception with a parse failure message and 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
-
InvalidJsonException
Creates an exception with a parse failure message.- Parameters:
message- failure description
-
InvalidJsonException
Creates an exception with a parse failure message and cause.- Parameters:
message- failure descriptioncause- root cause
-