for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Copyright (c) 2020.
* @author Paweł Antosiak <[email protected]>
*/
declare(strict_types=1);
namespace Gorynych\Exception;
final class KernelNotBootedException extends \RuntimeException
{
public function __construct($message = "Please, boot kernel before this operation.")
parent::__construct($message);
}