Class UnsupportedEncodingException

All Implemented Interfaces:
Serializable, Localized­Exception

public class UnsupportedEncodingException extends DataStoreContentException
Thrown when a storage uses some encoding options not supported by current implementation. For example, it may be a compression method not implemented by the reader.
Since:
1.1
See Also:
  • Constructor Details

    • UnsupportedEncodingException

      public UnsupportedEncodingException(String message)
      Creates an exception with the specified details message.
      Parameters:
      message - the detail message.
    • UnsupportedEncodingException

      public UnsupportedEncodingException(Throwable cause)
      Creates an exception with the specified cause and no details message.
      Parameters:
      cause - the cause for this exception.
    • UnsupportedEncodingException

      public UnsupportedEncodingException(String message, Throwable cause)
      Creates an exception with the specified details message and cause.
      Parameters:
      message - the detail message.
      cause - the cause for this exception.