Add new exception MDWrongCsrfTokenException

This commit is contained in:
Joshua Ramon Enslin 2020-09-15 23:11:20 +02:00 committed by Stefan Rohde-Enslin
parent 54e8fe5bdb
commit 31eb62700d

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.
*/
final class MDWrongCsrfTokenException extends MDgenericInvalidInputsException {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'Input URL is invalid';
return $errorMsg;
}
}