mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-09-16 13:06:35 +00:00
cfa3d44471
* Move files in typical src and tests folder * Fix psalm error
10 lines
174 B
PHP
10 lines
174 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class CharNotAllowed extends InvalidEmail
|
|
{
|
|
const CODE = 201;
|
|
const REASON = "Non allowed character in domain";
|
|
}
|