mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
9 lines
181 B
PHP
9 lines
181 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class CommaInDomain extends InvalidEmail
|
|
{
|
|
const CODE = 200;
|
|
const REASON = "Comma ',' is not allowed in domain part";
|
|
}
|