2020-07-25 23:35:38 +02:00
|
|
|
<?PHP
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom exception class for errors loading configuration information.
|
|
|
|
*/
|
2020-08-29 12:57:45 +02:00
|
|
|
final class MDConfigCannotBeLoadedException extends Exception {
|
2020-07-25 23:35:38 +02:00
|
|
|
/**
|
|
|
|
* Error message.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function errorMessage() {
|
|
|
|
//error message
|
2022-09-15 21:06:32 +02:00
|
|
|
return 'Could not connect to databse. Please try again later.';
|
2020-07-25 23:35:38 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|