* SPDX-License-Identifier: MIT */ declare(strict_types=1); namespace Respect\Validation\Exceptions; class SubdivisionCodeException extends ValidationException { /** * @var array> */ protected array $defaultTemplates = [ self::MODE_DEFAULT => [ self::STANDARD => '{{name}} must be a subdivision code of {{countryName}}', ], self::MODE_NEGATIVE => [ self::STANDARD => '{{name}} must not be a subdivision code of {{countryName}}', ], ]; }