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