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