22 lines
424 B
PHP
22 lines
424 B
PHP
|
<?PHP
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
/**
|
||
|
* Custom exception class for invalid page parameters.
|
||
|
*/
|
||
|
class MDpageParameterNotNumericException 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;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|