public static function deleteLiveVersion(): ShopwareHttpException
{ return new LiveVersionDeleteException();
} /**
* @param array<mixed> $payload
*/
public static function resourceNotFound(string
$entity, array
$payload): ShopwareHttpException
{ return new ResourceNotFoundException($entity,
$payload);
} public static function unsupportedOperation(string
$operation): self
{ return new self( Response::HTTP_BAD_REQUEST,
self::API_UNSUPPORTED_OPERATION_EXCEPTION,
'Unsupported {{ operation }} operation.',
['operation' =>
$operation] );
}