2020-07-25 23:53:19 +02:00
|
|
|
<?PHP
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exception thrown in case the main entity of a page (e.g. an object, an institution etc.)
|
|
|
|
* are not set public.
|
|
|
|
*/
|
2020-08-29 12:57:45 +02:00
|
|
|
final class MDwriteAccessDeniedException extends Exception {
|
2020-07-25 23:53:19 +02:00
|
|
|
/**
|
|
|
|
* Error message.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function errorMessage() {
|
|
|
|
//error message
|
|
|
|
$errorMsg = 'You have no permission to write this.';
|
|
|
|
return $errorMsg;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|