Add new exception MDWrongCsrfTokenException
This commit is contained in:
parent
54e8fe5bdb
commit
31eb62700d
22
exceptions/generic/MDWrongCsrfTokenException.php
Normal file
22
exceptions/generic/MDWrongCsrfTokenException.php
Normal 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;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user