15 lines
416 B
PHP
15 lines
416 B
PHP
<?php
|
|
|
|
/**
|
|
* @see https://github.com/laminas/laminas-mime for the canonical source repository
|
|
* @copyright https://github.com/laminas/laminas-mime/blob/master/COPYRIGHT.md
|
|
* @license https://github.com/laminas/laminas-mime/blob/master/LICENSE.md New BSD License
|
|
*/
|
|
|
|
namespace Laminas\Mime\Exception;
|
|
|
|
class InvalidArgumentException extends \InvalidArgumentException implements
|
|
ExceptionInterface
|
|
{
|
|
}
|