MDErrorReporter/exceptions/generic/MDInvalidUrl.php

23 lines
427 B
PHP
Raw Normal View History

2020-09-04 00:31:43 +02:00
<?PHP
declare(strict_types = 1);
/**
* Exception thrown in case the main entity of a page (e.g. an object, an institution etc.)
* are not set public.
*/
class MDInvalidUrl extends MDgenericInvalidInputsException {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'Input URL is invalid';
return $errorMsg;
}
}