Files
exceptions
generic
MDAccessDeniedException.php
MDConfigCannotBeLoadedException.php
MDExpectedException.php
MDFileDoesNotExist.php
MDFileIsNotReadable.php
MDInaccessiblePropertyException.php
MDInputTooLongException.php
MDInvalidColorCode.php
MDInvalidCsv.php
MDInvalidEmail.php
MDInvalidEmptyInputException.php
MDInvalidUrl.php
MDOutputBufferNotStarted.php
MDParseException.php
MDRequiredConfigNotSet.php
MDWrongCsrfTokenException.php
MDgenericInvalidInputsException.php
MDhttpFailedException.php
MDmainEntityNotExistentException.php
MDpageParameterNotFromListException.php
page
updates
.gitattributes
LICENSE
MDErrorCategory.php
MDErrorReporter.php
README.md
MDErrorReporter/exceptions/generic/MDWrongCsrfTokenException.php

20 lines
413 B
PHP

<?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
return 'Input URL is invalid';
}
}