for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Shopware\Core\System\Country\Exception;
use Shopware\Core\Framework\Log\Package;
use Shopware\Core\System\Country\CountryException;
use Symfony\Component\HttpFoundation\Response;
/**
* @deprecated tag:v6.6.0 - reason:remove-exception - will be removed, use CountryException::countryStateNotFound instead
*/
#[Package('system-settings')]
class CountryStateNotFoundException extends CountryException
{
public function __construct(string $id)
parent::__construct(
Response::HTTP_BAD_REQUEST,
'CHECKOUT__COUNTRY_STATE_NOT_FOUND',
'Country state with id "{{ stateId }}" not found.',
['stateId' => $id]
);
}