mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 23:59:51 +01:00
12 lines
No EOL
264 B
PHP
12 lines
No EOL
264 B
PHP
<?php
|
|
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class NumericException extends ValidationException
|
|
{
|
|
const INVALID_NUMERIC= 'Numeric_1';
|
|
public static $defaultTemplates = array(
|
|
self::INVALID_NUMERIC => '"%s" is not a numeric value',
|
|
);
|
|
|
|
} |