diff --git a/exceptions/updates/MDInvalidObjectPublicationBackground.php b/exceptions/updates/MDInvalidObjectPublicationBackground.php new file mode 100644 index 0000000..20822d3 --- /dev/null +++ b/exceptions/updates/MDInvalidObjectPublicationBackground.php @@ -0,0 +1,29 @@ + + */ +declare(strict_types = 1); + +/** + * Custom exception class to be raised when trying to use a license that is not + * accepted by museum-digital. + */ +class MDInvalidObjectPublicationBackground extends MDgenericInvalidInputsException { + + /** + * Error message. + * + * @return string + */ + public function errorMessage() { + //error message + $errorMsg = 'The following object publication type is not available: ' . $this->getMessage(); + return $errorMsg; + + } + +}