22 lines
345 B
PHP
22 lines
345 B
PHP
|
<?PHP
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
/**
|
||
|
* Custom exception class for invalid page parameters.
|
||
|
*/
|
||
|
class MDConsoleInvalidHeadingNumber {
|
||
|
|
||
|
/**
|
||
|
* Error message.
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function errorMessage() {
|
||
|
//error message
|
||
|
$errorMsg = 'Invalid heading level';
|
||
|
return $errorMsg;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|