mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
9 lines
156 B
PHP
9 lines
156 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class CRLFAtTheEnd extends InvalidEmail
|
|
{
|
|
const CODE = 149;
|
|
const REASON = "CRLF at the end";
|
|
}
|