MDErrorReporter/exceptions/updates/MDcouldNotSaveException.php

19 lines
315 B
PHP

<?PHP
declare(strict_types = 1);
/**
* Exception thrown in case an update failed.
*/
final class MDcouldNotSaveException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
return 'Could not save.';
}
}