Interface GraphQLMaxResourceLimitExceededError

All Superinterfaces:
GraphQLErrorObject
All Known Implementing Classes:
GraphQLMaxResourceLimitExceededErrorImpl

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.ASSOCIATE_ROLE)
             .build()