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