MDErrorReporter/exceptions/generic/MDRequiredConfigNotSet.php

22 lines
405 B
PHP
Raw Normal View History

<?PHP
declare(strict_types = 1);
/**
* Custom exception class for errors loading configuration information.
*/
class MDRequiredConfigNotSet extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'Could not connect to databse. Please try again later.';
return $errorMsg;
}
}