MDErrorReporter/exceptions/generic/MDAccessDeniedException.php

19 lines
403 B
PHP
Raw Normal View History

2020-07-25 23:35:38 +02:00
<?PHP
declare(strict_types = 1);
/**
2022-09-15 21:06:32 +02:00
* Custom exception class to throw when users attempt to access a page without necessary permissions.
2020-07-25 23:35:38 +02:00
*/
2020-08-29 12:57:45 +02:00
final class MDAccessDeniedException extends MDExpectedException {
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 'Access denied: ' . $this->getMessage();
2020-07-25 23:35:38 +02:00
}
}