Class EncodeException

    • Constructor Detail

      • EncodeException

        public EncodeException()
        Creates a generic EncodeException with no cause or error description set.
      • EncodeException

        public EncodeException​(String message)
        Creates a EncodeException with the given error message.
        Parameters:
        message - The error message to convey with the exception.
      • EncodeException

        public EncodeException​(Throwable cause)
        Creates a EncodeException with the given assigned root cause exception.
        Parameters:
        cause - The underlying exception that triggered this encode error to be thrown.
      • EncodeException

        public EncodeException​(String message,
                               Throwable cause)
        Creates a EncodeException with the given error message and assigned root cause exception.
        Parameters:
        message - The error message to convey with the exception.
        cause - The underlying exception that triggered this encode error to be thrown.