10 lines
302 B
PHP
10 lines
302 B
PHP
|
<?php
|
||
|
|
||
|
namespace OCA\GroupfolderFilesystemSnapshots\Exceptions;
|
||
|
|
||
|
class ChangesMadeSinceDiffException extends \RuntimeException {
|
||
|
public function __construct(string $message = 'Conflicting changes have been made to the files, since the restore process started') {
|
||
|
parent::__construct($message);
|
||
|
}
|
||
|
}
|