exceptions
MDInvalidNodaLinkException.php
MDInvalidNodaLinkLcshIdIsGeneralLoc.php
MDInvalidNodaLinkLocIdIsSh.php
l18n
src
tests
.git.template
.gitattributes
.gitmodules
LICENSE
README.md
phpstan.neon
21 lines
444 B
PHP
21 lines
444 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
|
|
/**
|
|
* Exception thrown in case a library of congress subject headings link refers
|
|
* to the other authority files of the Library of Congress.
|
|
*/
|
|
final class MDInvalidNodaLinkLcshIdIsGeneralLoc extends MDInvalidNodaLinkException {
|
|
/**
|
|
* Error message.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function errorMessage() {
|
|
//error message
|
|
return 'Inputs are not valid.';
|
|
|
|
}
|
|
}
|
|
|