mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-03-01 04:29:24 +01:00
17 lines
453 B
PHP
17 lines
453 B
PHP
<?php
|
|
|
|
/**
|
|
* @see https://github.com/laminas/laminas-mail for the canonical source repository
|
|
* @copyright https://github.com/laminas/laminas-mail/blob/master/COPYRIGHT.md
|
|
* @license https://github.com/laminas/laminas-mail/blob/master/LICENSE.md New BSD License
|
|
*/
|
|
|
|
namespace Laminas\Mail\Exception;
|
|
|
|
/**
|
|
* Exception for Laminas\Mail component.
|
|
*/
|
|
class OutOfBoundsException extends \OutOfBoundsException implements ExceptionInterface
|
|
{
|
|
}
|