respect-validation/library/Exceptions/FalseException.php

16 lines
389 B
PHP
Raw Normal View History

2015-01-22 17:47:55 +01:00
<?php
2015-06-08 16:47:14 +02:00
2015-01-22 17:47:55 +01:00
namespace Respect\Validation\Exceptions;
class FalseException extends ValidationException
{
public static $defaultTemplates = array(
self::MODE_DEFAULT => array(
self::STANDARD => '{{name}} is not considered as "False"',
),
self::MODE_NEGATIVE => array(
self::STANDARD => '{{name}} is considered as "False"',
),
);
}