added DiffTaskResultService, including revert logic

This commit is contained in:
Jonathan Treffler 2024-01-24 20:57:47 +01:00 committed by root
parent 5b6470a53b
commit a0e91fbf7b
3 changed files with 163 additions and 0 deletions

View file

@ -0,0 +1,9 @@
<?php
namespace OCA\GroupfolderFilesystemSnapshots\Exceptions;
class AlreadyRevertedException extends \RuntimeException {
public function __construct(string $message = 'Diff task result has already been reverted.') {
parent::__construct($message);
}
}