Files
shlink/module/Common/src/Exception/RuntimeException.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
{
}