respect-validation/library/Exceptions/TrueException.php
2015-06-08 11:51:45 -03:00

15 lines
386 B
PHP

<?php
namespace Respect\Validation\Exceptions;
class TrueException extends ValidationException
{
public static $defaultTemplates = array(
self::MODE_DEFAULT => array(
self::STANDARD => '{{name}} is not considered as "True"',
),
self::MODE_NEGATIVE => array(
self::STANDARD => '{{name}} is considered as "True"',
),
);
}