mirror of
https://github.com/Respect/Validation.git
synced 2026-03-18 08:09:51 +01:00
12 lines
222 B
PHP
12 lines
222 B
PHP
<?php
|
|
|
|
namespace Respect\Validation\Exceptions;
|
|
|
|
class DomainException extends AbstractNestedException
|
|
{
|
|
|
|
public static $defaultTemplates = array(
|
|
self::STANDARD => '{{name}} must be a valid domain',
|
|
);
|
|
|
|
}
|