Interface InternalConstraintViolatedError

All Superinterfaces:
ErrorObject

public interface InternalConstraintViolatedError extends ErrorObject

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

     InternalConstraintViolatedError internalConstraintViolatedError = InternalConstraintViolatedError.builder()
             .message("{message}")
             .build()