public const FOOTER_CATEGORY_NOT_FOUND = 'CHECKOUT__FOOTER_CATEGORY_NOT_FOUND';
public const AFTER_CATEGORY_NOT_FOUND = 'CONTENT__AFTER_CATEGORY_NOT_FOUND';
public static function pageNotFound(string
$pageId): ShopwareHttpException
{ return new PageNotFoundException($pageId);
} public static function categoryNotFound(string
$id): ShopwareHttpException
{ return new CategoryNotFoundException($id);
} public static function serviceCategoryNotFoundForSalesChannel(string
$salesChannelName): self
{ return new self( Response::HTTP_BAD_REQUEST,
self::SERVICE_CATEGORY_NOT_FOUND,
'Service category, for sales channel {{ salesChannelName }}, is not set',
['salesChannelName' =>
$salesChannelName] );
}