MDAllowedValueSets/exceptions/MDInvalidNodaLinkException.php

19 lines
383 B
PHP
Raw Normal View History

2023-10-15 16:13:53 +02:00
<?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.';
}
}