Add exceptions from nodac

This commit is contained in:
2020-07-25 23:44:44 +02:00
committed by Stefan Rohde-Enslin
parent 7e35a39cf5
commit 40cbf77db9
8 changed files with 189 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?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;
}
}

View File

@ -0,0 +1,22 @@
<?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 MDgenericInvalidInputsException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'Inputs are not valid.';
return $errorMsg;
}
}

View File

@ -0,0 +1,22 @@
<?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 MDhttpFailedException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'Inputs are not valid.';
return $errorMsg;
}
}