Interface GraphQLMaxResourceLimitExceededError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLMaxResourceLimitExceededError extends GraphQLErrorObject

Returned when a resource type cannot be created as it has reached its limits.

The limits must be adjusted for this resource before sending the request again.


Example to create an instance using the builder pattern

     GraphQLMaxResourceLimitExceededError graphQLMaxResourceLimitExceededError = GraphQLMaxResourceLimitExceededError.builder()
             .exceededResource(ReferenceTypeId.APPROVAL_FLOW)
             .build()