File "InvalidEmail.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/egulias/email-validator/src/Exception/InvalidEmail.php
File size: 280 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Egulias\EmailValidator\Exception;

abstract class InvalidEmail extends \InvalidArgumentException
{
    const REASON = "Invalid email";
    const CODE = 0;

    public function __construct()
    {
        parent::__construct(static::REASON, static::CODE);
    }
}