MDAllowedValueSets/exceptions/MDInvalidNodaLinkLocIdIsSh.php

22 lines
470 B
PHP
Raw Permalink Normal View History

2023-10-15 16:13:53 +02:00
<?PHP
declare(strict_types = 1);
/**
* Exception thrown in case a library of congress link refers to the subject
* headings (subject headings are a dedicated, full vocabulary according to
* md's definition).
*/
final class MDInvalidNodaLinkLocIdIsSh extends MDInvalidNodaLinkException {
2023-10-15 16:13:53 +02:00
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
return 'Inputs are not valid.';
}
}