2020-07-25 23:44:44 +02:00
|
|
|
<?PHP
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
/**
|
2022-09-15 21:06:32 +02:00
|
|
|
* Exception thrown in case an update failed.
|
2020-07-25 23:44:44 +02:00
|
|
|
*/
|
2020-08-29 12:57:45 +02:00
|
|
|
final class MDcouldNotSaveException extends Exception {
|
2020-07-25 23:44:44 +02:00
|
|
|
/**
|
|
|
|
* Error message.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function errorMessage() {
|
|
|
|
//error message
|
2022-09-15 21:06:32 +02:00
|
|
|
return 'Could not save.';
|
2020-07-25 23:44:44 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|