MDErrorReporter/exceptions/generic/MDgenericInvalidInputsException.php

21 lines
423 B
PHP
Raw Normal View History

2020-07-25 23:44:44 +02:00
<?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.
*/
class MDgenericInvalidInputsException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'Inputs are not valid.';
return $errorMsg;
}
}