MDErrorReporter/exceptions/generic/MDWrongCsrfTokenException.php

20 lines
413 B
PHP
Raw Normal View History

<?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
2022-09-15 21:06:32 +02:00
return 'Input URL is invalid';
}
}