Interface MaxResourceLimitExceededError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
MaxResourceLimitExceededErrorImpl

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

     MaxResourceLimitExceededError maxResourceLimitExceededError = MaxResourceLimitExceededError.builder()
             .message("{message}")
             .exceededResource(ReferenceTypeId.ASSOCIATE_ROLE)
             .build()