Add exception class MDInvalidNodaLink
This commit is contained in:
parent
3148affb04
commit
39ce16f72d
24
exceptions/updates/MDInvalidNodaLink.php
Normal file
24
exceptions/updates/MDInvalidNodaLink.php
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<?PHP
|
||||||
|
/**
|
||||||
|
* This file contains an exception class for usage of invalid noda links.
|
||||||
|
*
|
||||||
|
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
||||||
|
*/
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom exception class to be raised when trying to use a language that is not
|
||||||
|
* accepted by museum-digital.
|
||||||
|
*/
|
||||||
|
final class MDInvalidNodaLink extends Exception {
|
||||||
|
/**
|
||||||
|
* Error message.
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function errorMessage() {
|
||||||
|
//error message
|
||||||
|
return 'The noda link is not valid: ' . $this->getMessage();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user