Files
exceptions
generic
page
updates
MDDownloadException.php
MDDuplicateLinkException.php
MDFileIsNotWritable.php
MDFileUploadNotAcceptedException.php
MDImporterDuplicateInvno.php
MDImporterFileAccessIsDisabled.php
MDImporterWritingIsDisabled.php
MDInsufficientPassword.php
MDInvalidColor.php
MDInvalidCurrency.php
MDInvalidInputDate.php
MDInvalidLengthUnit.php
MDInvalidLicense.php
MDInvalidNodaLink.php
MDInvalidObjectForm.php
MDInvalidObjectPublicationBackground.php
MDInvalidWeightUnit.php
MDNoUpdateVarSetException.php
MDPgpKeyIsInvalid.php
MDTooManyFilesUploadException.php
MDUploadTooLargeException.php
MDUserPasswordsDoNotMatch.php
MDWrongFileType.php
MDcouldNotSaveException.php
MDcouldNotSetPublic.php
MDwriteAccessDeniedException.php
.gitattributes
MDErrorReporter.php
README.md
MDErrorReporter/exceptions/updates/MDInvalidObjectForm.php

27 lines
613 B
PHP

<?PHP
/**
* This file contains an exception class for usage of unaccepted object form.
*
* @file
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
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();
}
}