exceptions
generic
page
updates
MDBlacklistedInputException.php
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
21 lines
408 B
PHP
21 lines
408 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
|
|
/**
|
|
* Exception thrown in case an erroneously duplicate link is to be entered in a
|
|
* linking table.
|
|
*/
|
|
final class MDDuplicateLinkException extends Exception {
|
|
/**
|
|
* Error message.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function errorMessage() {
|
|
|
|
//error message
|
|
return 'Duplicate link exception: ' . $this->getMessage() . '.';
|
|
|
|
}
|
|
}
|