MDErrorReporter/exceptions/updates/MDNoUpdateVarSetException.php

23 lines
430 B
PHP
Raw Normal View History

2020-07-25 23:44:44 +02:00
<?PHP
declare(strict_types = 1);
/**
* Custom exception class for invalid page parameters, which must be values of a
* preset list of allowed values.
*/
class MDNoUpdateVarSetException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'No update variable has been set.';
return $errorMsg;
}
}