MDErrorReporter/exceptions/generic/MDConfigCannotBeLoadedException.php

22 lines
414 B
PHP
Raw Normal View History

2020-07-25 23:35:38 +02:00
<?PHP
declare(strict_types = 1);
/**
* Custom exception class for errors loading configuration information.
*/
class MDConfigCannotBeLoadedException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'Could not connect to databse. Please try again later.';
return $errorMsg;
}
}