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