MDErrorReporter/exceptions/generic/MDConfigCannotBeLoadedException.php

19 lines
387 B
PHP

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