18 lines
450 B
PHP
18 lines
450 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @see https://github.com/laminas/laminas-escaper for the canonical source repository
|
||
|
* @copyright https://github.com/laminas/laminas-escaper/blob/master/COPYRIGHT.md
|
||
|
* @license https://github.com/laminas/laminas-escaper/blob/master/LICENSE.md New BSD License
|
||
|
*/
|
||
|
|
||
|
namespace Laminas\Escaper\Exception;
|
||
|
|
||
|
/**
|
||
|
* Invalid argument exception
|
||
|
*/
|
||
|
class RuntimeException extends \RuntimeException implements
|
||
|
ExceptionInterface
|
||
|
{
|
||
|
}
|