respect-validation/library/Exceptions/ExistsException.php
2014-07-12 20:20:43 +01:00

18 lines
365 B
PHP

<?php
namespace Respect\Validation\Exceptions;
class ExistsException extends ValidationException
{
public static $defaultTemplates = array(
self::MODE_DEFAULT => array(
self::STANDARD => '{{name}} must exists',
),
self::MODE_NEGATIVE => array(
self::STANDARD => '{{name}} must not exists',
)
);
}