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.
|
|
|
|
*/
|
2020-09-04 01:16:42 +02:00
|
|
|
final class MDInvalidUrl extends MDgenericInvalidInputsException {
|
2020-09-04 00:31:43 +02:00
|
|
|
/**
|
|
|
|
* Error message.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function errorMessage() {
|
|
|
|
//error message
|
2022-09-15 21:06:32 +02:00
|
|
|
return 'Input URL is invalid';
|
2020-09-04 00:31:43 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|