2020-08-06 10:33:20 +02:00
|
|
|
<?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
|
2022-09-15 21:06:32 +02:00
|
|
|
return 'Parameter: <b>' . $this->getMessage() . '</b> is not a valid, numeric values.';
|
2020-08-06 10:33:20 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|