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

11 lines
141 B
PHP

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