mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-08-28 11:07:55 +00:00
10 lines
174 B
PHP
10 lines
174 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class UnopenedComment extends InvalidEmail
|
|
{
|
|
const CODE = 152;
|
|
const REASON = "No opening comment token found";
|
|
}
|