respect-validation/library/Exceptions/MinimumAgeException.php

16 lines
404 B
PHP
Raw Normal View History

2011-09-19 02:31:40 +02:00
<?php
2015-06-08 16:47:14 +02:00
2011-09-19 02:31:40 +02:00
namespace Respect\Validation\Exceptions;
class MinimumAgeException extends ValidationException
{
public static $defaultTemplates = array(
self::MODE_DEFAULT => array(
self::STANDARD => 'The age must be {{age}} years or more.',
),
self::MODE_NEGATIVE => array(
self::STANDARD => 'The age must not be {{age}} years or more.',
),
2011-09-19 02:31:40 +02:00
);
}