mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
9 lines
154 B
PHP
9 lines
154 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class CRNoLF extends InvalidEmail
|
|
{
|
|
const CODE = 150;
|
|
const REASON = "Missing LF after CR";
|
|
}
|