2023-04-16 02:06:43 +02:00
|
|
|
<?PHP
|
|
|
|
/**
|
|
|
|
* This file contains an exception class for usage of invalid noda links.
|
2023-10-15 18:32:15 +02:00
|
|
|
* As a direct decendent of Exception, triggering this exception will lead to a report.
|
2023-04-16 02:06:43 +02:00
|
|
|
*
|
|
|
|
* @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.
|
|
|
|
*/
|
2023-10-15 18:32:15 +02:00
|
|
|
class MDInvalidNodaLink extends Exception {
|
2023-04-16 02:06:43 +02:00
|
|
|
/**
|
|
|
|
* Error message.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function errorMessage() {
|
|
|
|
//error message
|
|
|
|
return 'The noda link is not valid: ' . $this->getMessage();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|