Interface GraphQLOverCapacityError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLOverCapacityError extends GraphQLErrorObject

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

     GraphQLOverCapacityError graphQLOverCapacityError = GraphQLOverCapacityError.builder()
             .build()