Class NotSupportedException

  • All Implemented Interfaces:
    Serializable, Response

    public class NotSupportedException
    extends ResourceException
    An exception that is thrown during an operation on a resource when the resource does not implement/support the feature to fulfill the request.
    See Also:
    Serialized Form
    • Constructor Detail

      • NotSupportedException

        public NotSupportedException()
        Constructs a new exception with null as its detail message.
      • NotSupportedException

        public NotSupportedException​(String message)
        Constructs a new exception with the specified detail message.
        Parameters:
        message - The detail message.
      • NotSupportedException

        public NotSupportedException​(String message,
                                     Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        message - The detail message.
        cause - The exception which caused this exception to be thrown.
      • NotSupportedException

        public NotSupportedException​(Throwable cause)
        Constructs a new exception with the specified cause.
        Parameters:
        cause - The exception which caused this exception to be thrown.