Files
shlink/module/Core/src/Exception/ExceptionInterface.php

11 lines
142 B
PHP

<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Core\Exception;
use Throwable;
interface ExceptionInterface extends Throwable
{
}