Interface GraphQLCountryNotConfiguredInStoreError

All Superinterfaces:
GraphQLErrorObject

public interface GraphQLCountryNotConfiguredInStoreError extends GraphQLErrorObject

Returned when a Cart or an Order in a Store references a country that is not included in the countries configured for the Store.

The error is returned as a failed response to:


Example to create an instance using the builder pattern

     GraphQLCountryNotConfiguredInStoreError graphQLCountryNotConfiguredInStoreError = GraphQLCountryNotConfiguredInStoreError.builder()
             .plusStoreCountries(storeCountriesBuilder -> storeCountriesBuilder)
             .country("{country}")
             .build()