Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RevisionMismatchException.php « Exception « src « smb « icewind « 3rdparty « files_external « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e898b5a23474a77984965033a95fcc4c8f4aaff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/**
 * Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
 * This file is licensed under the Licensed under the MIT license:
 * http://opensource.org/licenses/MIT
 */

namespace Icewind\SMB\Exception;

use Throwable;

class RevisionMismatchException extends Exception {
	public function __construct($message = 'Protocol version mismatch', $code = 0, Throwable $previous = null) {
		parent::__construct($message, $code, $previous);
	}
}