Class DecoderException

All Implemented Interfaces:
Serializable

public class DecoderException extends RuntimeException
Thrown when an error occurs during decoding an object.
See Also:
  • Constructor Details

    • DecoderException

      public DecoderException()
      Constructs a new decoder exception with no details.
    • DecoderException

      public DecoderException(@Nullable @Nullable String message)
      Constructs a new decoder exception with the specified message.
      Parameters:
      message - The message of the exception
    • DecoderException

      public DecoderException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause)
      Constructs a new decoder exception with the specified message and cause.
      Parameters:
      message - The message of the exception
      cause - The cause of the exception
    • DecoderException

      public DecoderException(@Nullable @Nullable Throwable cause)
      Constructs a new decoder exception with the specified cause.
      Parameters:
      cause - The cause of the exception