mirror of
https://github.com/egulias/EmailValidator.git
synced 2026-09-16 04:56:47 +00:00
cfa3d44471
* Move files in typical src and tests folder * Fix psalm error
10 lines
158 B
PHP
10 lines
158 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Exception;
|
|
|
|
class ExpectingCTEXT extends InvalidEmail
|
|
{
|
|
const CODE = 139;
|
|
const REASON = "Expecting CTEXT";
|
|
}
|