HighSpeaker/vendor/workerman/validation/library/Exceptions/PrintableException.php
2024-01-31 22:15:08 +08:00

36 lines
1017 B
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Exceptions;
/**
* Exceptions to be thrown by the Printable Rule.
*
* @author Alexandre Gomes Gaigalas <alganet@gmail.com>
* @author Andre Ramaciotti <andre@ramaciotti.com>
* @author Emmerson Siqueira <emmersonsiqueira@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
*/
final class PrintableException extends FilteredValidationException
{
/**
* {@inheritDoc}
*/
protected $defaultTemplates = [
self::MODE_DEFAULT => [
self::STANDARD => '{{name}} 只能包含可打印字符',
self::EXTRA => '{{name}} 只能包含可打印字符和 "{{additionalChars}}"',
],
self::MODE_NEGATIVE => [
self::STANDARD => '{{name}} 不能包含可打印字符',
self::EXTRA => '{{name}} 不能包含可打印字符或 "{{additionalChars}}"',
],
];
}