mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-24 15:50:49 +08:00
19 lines
417 B
PHP
19 lines
417 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Imagine package.
|
|
*
|
|
* (c) Bulat Shakirzyanov <mallluhuct@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Imagine\Exception;
|
|
|
|
/**
|
|
* Imagine-specific invalid argument exception
|
|
*/
|
|
class InvalidArgumentException extends \InvalidArgumentException implements Exception
|
|
{
|
|
}
|