* @copyright Copyright (c) 2022, Dale Davies * @license MIT */ namespace Jump\Exceptions; class SiteNotFoundException extends \Exception { public function __construct(string $ref) { parent::__construct('The site could not be found (' . $ref . ')'); } }