mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
10 lines
157 B
PHP
10 lines
157 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class DotAtStart extends InvalidEmail
|
|
{
|
|
const CODE = 141;
|
|
const REASON = "Found DOT at start";
|
|
}
|