Remove duplicate exception MDaccessDeniedException

This commit is contained in:
Joshua Ramon Enslin 2020-07-30 10:23:38 +02:00 committed by Stefan Rohde-Enslin
parent 71fdc490f9
commit 6f0ad68966

View File

@ -1,22 +0,0 @@
<?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.
*/
class MDaccessDeniedException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'You have no permission to access this.';
return $errorMsg;
}
}