mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 23:59:51 +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
207 B
PHP
12 lines
No EOL
207 B
PHP
<?php
|
|
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class PositiveException extends ValidationException
|
|
{
|
|
|
|
public static $defaultTemplates = array(
|
|
self::STANDARD => '%s must be positive',
|
|
);
|
|
|
|
} |