MDErrorReporter/exceptions/generic/MDExpectedException.php

19 lines
376 B
PHP

<?PHP
declare(strict_types = 1);
/**
* Custom exception class for invalid page parameters.
*/
class MDExpectedException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
return 'Parameter: <b>' . $this->getMessage() . '</b> is not a valid, numeric values.';
}
}