Files
panel-pelican-dev/app/Exceptions/Service/Database/NoSuitableDatabaseHostException.php

17 lines
374 B
PHP
Raw Normal View History

<?php
2024-03-12 22:39:16 -04:00
namespace App\Exceptions\Service\Database;
2024-03-12 22:39:16 -04:00
use App\Exceptions\DisplayException;
class NoSuitableDatabaseHostException extends DisplayException
{
/**
* NoSuitableDatabaseHostException constructor.
*/
public function __construct()
{
parent::__construct('No database host was found that meets the requirements for this server.');
}
}