MDErrorReporter/exceptions/generic/MDExpectedException.php

20 lines
407 B
PHP
Raw Normal View History

<?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
$errorMsg = 'Parameter: <b>' . $this->getMessage() . '</b> is not a valid, numeric values.';
return $errorMsg;
}
}