Files
exceptions
generic
page
updates
MDDuplicateLinkException.php
MDFileUploadNotAcceptedException.php
MDInvalidCurrency.php
MDInvalidInputDate.php
MDInvalidLengthUnit.php
MDInvalidLicense.php
MDInvalidObjectPublicationBackground.php
MDInvalidWeightUnit.php
MDNoUpdateVarSetException.php
MDTooManyFilesUploadException.php
MDWrongFileType.php
MDcouldNotSaveException.php
MDcouldNotSetPublic.php
MDwriteAccessDeniedException.php
.gitattributes
MDErrorReporter.php
MDErrorReporter/exceptions/updates/MDInvalidObjectPublicationBackground.php

28 lines
665 B
PHP

<?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.
*/
final 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;
}
}