mirror of
https://github.com/Combodo/iTop.git
synced 2026-03-10 11:34:13 +01:00
13 lines
182 B
PHP
13 lines
182 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Laminas\Stdlib\Exception;
|
|
|
|
/**
|
|
* Runtime exception
|
|
*/
|
|
class RuntimeException extends \RuntimeException implements ExceptionInterface
|
|
{
|
|
}
|