mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-11 17:44:44 +08:00
11 lines
141 B
PHP
11 lines
141 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\CLI\Exception;
|
|
|
|
use Throwable;
|
|
|
|
interface ExceptionInterface extends Throwable
|
|
{
|
|
}
|