15 lines
226 B
PHP
15 lines
226 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace PhpImap\Exceptions;
|
||
|
|
|
||
|
|
use Exception;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @see https://github.com/barbushin/php-imap
|
||
|
|
*
|
||
|
|
* @author Barbushin Sergey http://linkedin.com/in/barbushin
|
||
|
|
*/
|
||
|
|
class InvalidParameterException extends Exception
|
||
|
|
{
|
||
|
|
}
|