Interface OverCapacityError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
OverCapacityErrorImpl

public interface OverCapacityError extends ErrorObject

Returned when the service is having trouble handling the load.

The client application should retry the request with exponential backoff up to a point where further delay is unacceptable.


Example to create an instance using the builder pattern

     OverCapacityError overCapacityError = OverCapacityError.builder()
             .message("{message}")
             .build()