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

11 lines
144 B
PHP

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