mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-15 07:32:02 +03:00
11 lines
143 B
PHP
11 lines
143 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Rest\Exception;
|
|
|
|
use Throwable;
|
|
|
|
interface ExceptionInterface extends Throwable
|
|
{
|
|
}
|