LocalOrReservedDomain.php 198 B

123456789
  1. <?php
  2. namespace Egulias\EmailValidator\Exception;
  3. class LocalOrReservedDomain extends InvalidEmail
  4. {
  5. const CODE = 153;
  6. const REASON = 'Local, mDNS or reserved domain (RFC2606, RFC6762)';
  7. }