mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
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";
|
|
}
|