MDErrorReporter/exceptions/updates/MDInvalidLicense.php

30 lines
625 B
PHP
Raw Normal View History

2020-07-25 23:35:38 +02:00
<?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 MDInvalidLicense extends MDgenericInvalidInputsException {
2020-07-25 23:35:38 +02:00
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
$errorMsg = 'The following license is not available: ' . $this->getMessage();
return $errorMsg;
}
}