Add MDInvalidObjectPublicationBackground.php

This commit is contained in:
Joshua Ramon Enslin 2020-08-07 18:06:01 +02:00 committed by Stefan Rohde-Enslin
parent 63759b8636
commit c6aeec1d2f

View File

@ -0,0 +1,29 @@
<?PHP
/**
* This file contains an exception class for usage of unaccepted licenses.
*
* @file
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
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;
}
}