'message' => 'Provided languageId is not a valid uuid',
];
yield SalesChannelException::NO_CONTEXT_DATA_EXCEPTION =>
[ 'exception' => SalesChannelException::
noContextData('myCustomScn'
),
'statusCode' => Response::HTTP_PRECONDITION_FAILED,
'errorCode' => SalesChannelException::NO_CONTEXT_DATA_EXCEPTION,
'message' => 'No context data found for SalesChannel "myCustomScn"',
];
yield SalesChannelException::COUNTRY_DOES_NOT_EXISTS_EXCEPTION =>
[ 'exception' => SalesChannelException::
countryNotFound('myCustomCountry'
),
'statusCode' => Response::HTTP_NOT_FOUND,
'errorCode' => SalesChannelException::COUNTRY_DOES_NOT_EXISTS_EXCEPTION,
'message' => 'Country with id "myCustomCountry" not found!.',
];
yield SalesChannelException::COUNTRY_STATE_DOES_NOT_EXISTS_EXCEPTION =>
[ 'exception' => SalesChannelException::
countryStateNotFound('myCustomCountryState'
),
'statusCode' => Response::HTTP_NOT_FOUND,
'errorCode' => SalesChannelException::COUNTRY_STATE_DOES_NOT_EXISTS_EXCEPTION,
'message' => 'Country state with id "myCustomCountryState" not found!.',
];