Package com.hazelcast.jet.cdc
Class ParsingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.hazelcast.jet.cdc.ParsingException
- All Implemented Interfaces:
Serializable
Exception to indicate that parsing CDC JSON data has failed irrecoverably.
- Since:
- Jet 4.2
- See Also:
-
Constructor Summary
ConstructorDescriptionParsingException
(String message) Constructs a new exception with the specified detail message.ParsingException
(String message, Throwable cause) Constructs a new exception with the specified detail message andThrowable
as 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
-
ParsingException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.
-
ParsingException
Constructs a new exception with the specified detail message andThrowable
as cause.- Parameters:
message
- the detail message.cause
- the cause of this exception.
-