Class DecoderNotFoundException

All Implemented Interfaces:
Serializable

public class DecoderNotFoundException extends ConverterException

Thrown by a CompositeDecoder to indicate that no decoder can decode a given type.

Since:
1.0
Author:
Jeremy Kuhn
See Also:
  • Constructor Details

    • DecoderNotFoundException

      public DecoderNotFoundException()

      Creates a decoder not found exception.

    • DecoderNotFoundException

      public DecoderNotFoundException(String message)

      Creates a decoder not found exception with the specified message.

      Parameters:
      message - the message
    • DecoderNotFoundException

      public DecoderNotFoundException(Throwable cause)

      Creates a decoder not found exception with the specified cause.

      Parameters:
      cause - the cause
    • DecoderNotFoundException

      public DecoderNotFoundException(String message, Throwable cause)

      Creates a decoder not found exception with the specified message and cause.

      Parameters:
      message - the message
      cause - the cause
    • DecoderNotFoundException

      public DecoderNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)

      Creates a decoder not found exception with the specified message, cause, suppression enabled or disabled and writable stack trace enabled or disabled.

      Parameters:
      message - the message
      cause - the cause
      enableSuppression - true to enable suppression, false otherwise
      writableStackTrace - true to make the stack trace writable, false otherwise