MDErrorReporter/exceptions/generic/MDInaccessiblePropertyException.php

20 lines
389 B
PHP

<?PHP
declare(strict_types = 1);
/**
* Custom exception class for errors loading configuration information.
*/
final class MDInaccessiblePropertyException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'Property is inaccessible';
return $errorMsg;
}
}