mirror of
https://github.com/Combodo/iTop.git
synced 2026-08-17 03:08:18 +02:00
13 lines
141 B
PHP
13 lines
141 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Laminas\Stdlib\Exception;
|
|
|
|
/**
|
|
* Exception marker interface
|
|
*/
|
|
interface ExceptionInterface
|
|
{
|
|
}
|