Interface GraphQLInternalConstraintViolatedError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLInternalConstraintViolatedError extends GraphQLErrorObject

Returned when certain API-specific constraints were not met. For example, the specified Discount Code was never applied and cannot be updated.


Example to create an instance using the builder pattern

     GraphQLInternalConstraintViolatedError graphQLInternalConstraintViolatedError = GraphQLInternalConstraintViolatedError.builder()
             .build()