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 ExpectedQPair extends InvalidEmail
|
|
{
|
|
const CODE = 136;
|
|
const REASON = "Expecting QPAIR";
|
|
}
|