Class EncoderException

All Implemented Interfaces:
Serializable

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

    • EncoderException

      public EncoderException()
      Constructs a new encoder exception with no details.
    • EncoderException

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

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

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