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:
java.io.Serializable
@EvolvingApi public class ParsingException extends java.lang.RuntimeException
Exception to indicate that parsing CDC JSON data has failed irrecoverably.- Since:
- Jet 4.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParsingException(java.lang.String message)
Constructs a new exception with the specified detail message.ParsingException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message andThrowable
as cause.
-
-
-
Constructor Detail
-
ParsingException
public ParsingException(java.lang.String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.
-
ParsingException
public ParsingException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message andThrowable
as cause.- Parameters:
message
- the detail message.cause
- the cause of this exception.
-
-