Class 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 and Throwable as cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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 and Throwable as cause.
        Parameters:
        message - the detail message.
        cause - the cause of this exception.