10 lines
258 B
PHP
10 lines
258 B
PHP
|
<?php
|
||
|
|
||
|
namespace OCA\GroupfolderFilesystemSnapshots\Exceptions;
|
||
|
|
||
|
class AlreadyRevertedException extends \RuntimeException {
|
||
|
public function __construct(string $message = 'Diff task result has already been reverted.') {
|
||
|
parent::__construct($message);
|
||
|
}
|
||
|
}
|