Class CdcValidationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.gridgain.internal.cdc.api.exception.CdcValidationException
- All Implemented Interfaces:
Serializable,org.apache.ignite.lang.TraceableException
public class CdcValidationException
extends org.apache.ignite.lang.IgniteException
Exception thrown when there is a validation error in CDC operations.
This exception is used to indicate that the provided data or configuration
does not meet the required criteria for CDC operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCdcValidationException(String message) Constructs a new CdcValidationException with the specified detail message.CdcValidationException(Throwable cause) Constructs a new CdcValidationException with the specified cause. -
Method Summary
Methods inherited from class org.apache.ignite.lang.IgniteException
code, codeAsString, errorCode, groupCode, groupName, toString, traceIdMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
CdcValidationException
Constructs a new CdcValidationException with the specified detail message.- Parameters:
message- The detail message.
-
CdcValidationException
Constructs a new CdcValidationException with the specified cause.- Parameters:
cause- The cause of the exception.
-