mirror of
https://github.com/Respect/Validation.git
synced 2026-03-15 06:45:44 +01:00
14 lines
379 B
PHP
14 lines
379 B
PHP
<?php
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class NoException extends ValidationException
|
|
{
|
|
public static $defaultTemplates = array(
|
|
self::MODE_DEFAULT => array(
|
|
self::STANDARD => '{{name}} is not considered as "No"',
|
|
),
|
|
self::MODE_NEGATIVE => array(
|
|
self::STANDARD => '{{name}} is considered as "No"',
|
|
),
|
|
);
|
|
}
|