2020-08-08 21:45:24 +02:00
|
|
|
<?PHP
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom exception class for invalid page parameters.
|
|
|
|
*/
|
2020-08-29 12:57:08 +02:00
|
|
|
final class MDConsoleInvalidHeadingNumber extends Exception {
|
2020-08-08 21:45:24 +02:00
|
|
|
/**
|
|
|
|
* Error message.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function errorMessage() {
|
|
|
|
//error message
|
|
|
|
$errorMsg = 'Invalid heading level';
|
|
|
|
return $errorMsg;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|