19 lines
383 B
PHP
19 lines
383 B
PHP
|
<?PHP
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
/**
|
||
|
* Exception thrown in case a controlled vocabulary is to be linked using an invalid ID.
|
||
|
*/
|
||
|
class MDInvalidNodaLinkException extends MDgenericInvalidInputsException {
|
||
|
/**
|
||
|
* Error message.
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function errorMessage() {
|
||
|
//error message
|
||
|
return 'Inputs are not valid.';
|
||
|
|
||
|
}
|
||
|
}
|