shlink/module/Rest/src/Exception/ExceptionInterface.php

11 lines
142 B
PHP
Raw Normal View History

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