respect-validation/library/Exceptions/CharsetException.php

16 lines
408 B
PHP
Raw Normal View History

2012-12-07 02:31:24 +01:00
<?php
namespace Respect\Validation\Exceptions;
class CharsetException extends ValidationException
{
public static $defaultTemplates = array(
self::MODE_DEFAULT => array(
self::STANDARD => '{{name}} must be in the {{charset}} charset'
),
self::MODE_NEGATIVE => array(
self::STANDARD => '{{name}} must not be in the {{charset}} charset'
)
);
}
2013-01-22 20:25:34 +01:00