respect-validation/library/Exceptions/TrueException.php
2015-01-23 02:46:07 -02:00

14 lines
385 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"',
),
);
}