Class UnimplementedException

All Implemented Interfaces:
Serializable

public class UnimplementedException extends ConsumerContractException
This method has not been implemented by this provider. The appropriate boolean test to indicate that this provider does not support this method should be supplied by the provider and checked by the consumer to avoid this error. This error can only result for methods whose compliance is optional.
See Also:
  • Constructor Details

    • UnimplementedException

      public UnimplementedException(String msg)
      Constructs a UnimplementedException with the specified detail message. The error message string msg can later be retrieved by the getMessage() method of Throwable.
      Parameters:
      msg - the error message
    • UnimplementedException

      public UnimplementedException(String msg, Throwable t)
      Constructs a UnimplementedException with the specified detail message and cause. The error message string msg can later be retrieved by the getMessage() method of Throwable.
      Parameters:
      msg - the error message
      t - the cause of the exception
    • UnimplementedException

      public UnimplementedException(Throwable t)
      Constructs a UnimplementedException with the specified cause and a detail message of cause.toString() which typically contains the class and detail message of cause.
      Parameters:
      t - the cause of the exception