eZ\Publish\Core\FieldType\Country\Exception\InvalidValue::__construct PHP Method

__construct() public method

Creates a new exception when $value is invalid.
public __construct ( mixed $value )
$value mixed
    public function __construct($value)
    {
        parent::__construct('$value', "'" . var_export($value, true) . "' is not a valid country identifier");
    }
InvalidValue