exceptions
generic
page
updates
MDDownloadException.php
MDDuplicateLinkException.php
MDFileIsNotWritable.php
MDFileUploadNotAcceptedException.php
MDInsufficientPassword.php
MDInvalidColor.php
MDInvalidCurrency.php
MDInvalidInputDate.php
MDInvalidLengthUnit.php
MDInvalidLicense.php
MDInvalidNodaLink.php
MDInvalidObjectForm.php
MDInvalidObjectPublicationBackground.php
MDInvalidWeightUnit.php
MDNoUpdateVarSetException.php
MDTooManyFilesUploadException.php
MDUploadTooLargeException.php
MDUserPasswordsDoNotMatch.php
MDWrongFileType.php
MDcouldNotSaveException.php
MDcouldNotSetPublic.php
MDwriteAccessDeniedException.php
.gitattributes
MDErrorReporter.php
README.md
19 lines
315 B
PHP
19 lines
315 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
|
|
/**
|
|
* Exception thrown in case an update failed.
|
|
*/
|
|
final class MDcouldNotSaveException extends Exception {
|
|
/**
|
|
* Error message.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function errorMessage() {
|
|
//error message
|
|
return 'Could not save.';
|
|
|
|
}
|
|
}
|