Class ServiceBrokerOperationInProgressException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ServiceBrokerCreateOperationInProgressException, ServiceBrokerDeleteOperationInProgressException, ServiceBrokerUpdateOperationInProgressException

public class ServiceBrokerOperationInProgressException extends ServiceBrokerException
Thrown to indicate that a request for a service instance or binding was received while asynchronous creation of the service instance or binding is in progress.

Throwing this exception will result in an HTTP status code 404 NOT FOUND being returned to the platform.

Author:
Scott Frederick
See Also:
  • Constructor Details

    • ServiceBrokerOperationInProgressException

      public ServiceBrokerOperationInProgressException()
      Construct an exception with a default message.
    • ServiceBrokerOperationInProgressException

      public ServiceBrokerOperationInProgressException(String operation)
      Construct an exception with a default message that includes the provided operation description.
      Parameters:
      operation - an identifier representing the operation in progress
    • ServiceBrokerOperationInProgressException

      public ServiceBrokerOperationInProgressException(String errorCode, String operation)
      Construct an exception with an error code and default message.
      Parameters:
      errorCode - a single word in camel case that uniquely identifies the error condition
      operation - an identifier representing the operation in progress
  • Method Details