for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Hyde\Framework\Exceptions;
use Exception;
class BaseUrlNotSetException extends Exception
{
/** @var string */
protected $message = 'No site URL has been set in config (or .env).';
/** @var int */
protected $code = 500;
}