Files
shlink/module/CLI/src/Exception/ExceptionInterface.php
2019-10-05 17:26:10 +02:00

12 lines
142 B
PHP

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