MDErrorReporter/exceptions/updates/MDcouldNotSaveException.php

19 lines
315 B
PHP
Raw Normal View History

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
}
}