for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Dandelion\Exception;
use RuntimeException as BaseRuntimeException;
class RuntimeException extends BaseRuntimeException
{
/**
* @param string|null $message
*
* @param int|null $code
*/
public function __construct(?string $message = null, ?int $code = null)
parent::__construct($message ?? '', $code ?? 0, null);
}