2020-08-06 23:28:53 +02:00
|
|
|
<?PHP
|
|
|
|
/**
|
|
|
|
* This file contains an exception class for usage of unaccepted currencies.
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
|
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom exception class to be raised when trying to use a currency that is not
|
|
|
|
* accepted by museum-digital.
|
|
|
|
*/
|
2020-08-29 12:57:45 +02:00
|
|
|
final class MDInvalidCurrency extends MDgenericInvalidInputsException {
|
2020-08-06 23:28:53 +02:00
|
|
|
/**
|
|
|
|
* Error message.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function errorMessage() {
|
|
|
|
//error message
|
2022-09-15 21:06:32 +02:00
|
|
|
return 'The following currency is not available: ' . $this->getMessage();
|
2020-08-06 23:28:53 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|