Interface BadGatewayError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
BadGatewayErrorImpl

public interface BadGatewayError extends ErrorObject

Returned when a server-side problem is caused by scaling infrastructure resources.

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

     BadGatewayError badGatewayError = BadGatewayError.builder()
             .message("{message}")
             .build()