2020-08-24 20:19:15 +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 MDInaccessiblePropertyException extends Exception {
|
2020-08-24 20:19:15 +02:00
|
|
|
/**
|
|
|
|
* Error message.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function errorMessage() {
|
|
|
|
//error message
|
2022-09-15 21:06:32 +02:00
|
|
|
return 'Property is inaccessible';
|
2020-08-24 20:19:15 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|