Files
exceptions
generic
MDAccessDeniedException.php
MDConfigCannotBeLoadedException.php
MDExpectedException.php
MDFileDoesNotExist.php
MDFileIsNotReadable.php
MDInaccessiblePropertyException.php
MDInvalidColorCode.php
MDInvalidEmail.php
MDInvalidUrl.php
MDOutputBufferNotStarted.php
MDRequiredConfigNotSet.php
MDWrongCsrfTokenException.php
MDgenericInvalidInputsException.php
MDhttpFailedException.php
MDmainEntityNotExistentException.php
MDpageParameterNotFromListException.php
page
updates
.gitattributes
MDErrorReporter.php
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;
}
}