mirror of
https://github.com/Respect/Validation.git
synced 2026-03-22 17:54:41 +01:00
12 lines
No EOL
262 B
PHP
12 lines
No EOL
262 B
PHP
<?php
|
|
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class DigitsException extends ValidationException
|
|
{
|
|
const INVALID_DIGITS= 'Digits_1';
|
|
public static $defaultTemplates = array(
|
|
self::INVALID_DIGITS => '"%s" does not contain only digits',
|
|
);
|
|
|
|
} |