NoDomainPart.php 155 B

123456789
  1. <?php
  2. namespace Egulias\EmailValidator\Exception;
  3. class NoDomainPart extends InvalidEmail
  4. {
  5. const CODE = 131;
  6. const REASON = "No Domain part";
  7. }