mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 15:50:03 +01:00
-Several improvements on the messaging system and error reporting, lots of refactored code.
-Validators can now be safely named $val->setName('My Field'), and that name will reflect on the validation message ("My Field must be bla bla bla" instead of "incorrect value" must be bla bla bla)
12 lines
No EOL
212 B
PHP
12 lines
No EOL
212 B
PHP
<?php
|
|
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class RegexException extends ValidationException
|
|
{
|
|
|
|
public static $defaultTemplates = array(
|
|
self::STANDARD => '%s must validate against %s',
|
|
);
|
|
|
|
} |