mirror of
https://github.com/Respect/Validation.git
synced 2026-03-17 15:50:03 +01:00
12 lines
No EOL
255 B
PHP
12 lines
No EOL
255 B
PHP
<?php
|
|
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class StringException extends ValidationException
|
|
{
|
|
const INVALID_STRING= 'String_1';
|
|
public static $defaultTemplates = array(
|
|
self::INVALID_STRING => '"%s" is not a valid string',
|
|
);
|
|
|
|
} |