mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-19 16:48:42 +02:00
9 lines
198 B
PHP
9 lines
198 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class LocalOrReservedDomain extends InvalidEmail
|
|
{
|
|
const CODE = 153;
|
|
const REASON = 'Local, mDNS or reserved domain (RFC2606, RFC6762)';
|
|
} |