*/ declare(strict_types = 1); /** * Custom exception class to be raised when trying to use an object form that is not * accepted by museum-digital. */ final class MDInvalidObjectForm extends MDgenericInvalidInputsException { /** * Error message. * * @return string */ public function errorMessage() { //error message return 'The following object form is not available: ' . $this->getMessage(); } }