23 lines
422 B
PHP
23 lines
422 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
|
|
/**
|
|
* Custom exception class for invalid page parameters, which must be values of a
|
|
* preset list of allowed values.
|
|
*/
|
|
class MDFileUploadNotAcceptedException extends Exception {
|
|
|
|
/**
|
|
* Error message.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function errorMessage() {
|
|
//error message
|
|
$errorMsg = $this->getMessage();
|
|
return $errorMsg;
|
|
|
|
}
|
|
|
|
}
|