Add class MDPageNotAvailable for functionalities disabled by config

This commit is contained in:
2026-07-31 11:38:22 +02:00
parent a01f06a00f
commit fc6ac5e31c
+19
View File
@@ -0,0 +1,19 @@
<?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.
*/
final class MDPageNotAvailable extends MDExpectedException {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
return 'There is no entity to be shown here (id: <b>' . $this->getMessage() . '</b>).';
}
}