mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 13:28:40 +00:00
14 lines
196 B
PHP
Executable File
14 lines
196 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Laminas\Escaper\Exception;
|
|
|
|
/**
|
|
* Invalid argument exception
|
|
*/
|
|
class RuntimeException extends \RuntimeException implements
|
|
ExceptionInterface
|
|
{
|
|
}
|