mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 18:59:09 -04:00
10 lines
154 B
PHP
10 lines
154 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class CRNoLF extends InvalidEmail
|
|
{
|
|
const CODE = 150;
|
|
const REASON = "Missing LF after CR";
|
|
}
|