Interface PendingOperationError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
PendingOperationErrorImpl

public interface PendingOperationError extends ErrorObject

Returned when a previous conflicting operation is still pending and needs to finish before the request can succeed.

The client application should retry the request with exponential backoff up to a point where further delay is unacceptable. If the error persists, report it using the Support Portal.


Example to create an instance using the builder pattern

     PendingOperationError pendingOperationError = PendingOperationError.builder()
             .message("{message}")
             .build()