mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-09-15 04:26:28 +00:00
cfa3d44471
* Move files in typical src and tests folder * Fix psalm error
10 lines
155 B
PHP
10 lines
155 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class NoDomainPart extends InvalidEmail
|
|
{
|
|
const CODE = 131;
|
|
const REASON = "No Domain part";
|
|
}
|