Package com.hazelcast.enterprise.jet.cdc
Class ParsingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.hazelcast.enterprise.jet.cdc.ParsingException
- All Implemented Interfaces:
 Serializable
Exception to indicate that parsing CDC JSON data has failed irrecoverably.
- Since:
 - 5.5
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionParsingException(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 andThrowableas 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 andThrowableas cause.- Parameters:
 message- the detail message.cause- the cause of this exception.
 
 -