Completed
Push — master ( 669135...206d6a )
by Robin
03:18
created

RevisionMismatchException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
ccs 0
cts 3
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 3
crap 2
1
<?php
2
/**
3
 * Copyright (c) 2014 Robin Appelman <[email protected]>
4
 * This file is licensed under the Licensed under the MIT license:
5
 * http://opensource.org/licenses/MIT
6
 */
7
8
namespace Icewind\SMB\Exception;
9
10
use Throwable;
11
12
class RevisionMismatchException extends Exception {
13
	public function __construct($message = 'Protocol version mismatch', $code = 0, Throwable $previous = null) {
14
		parent::__construct($message, $code, $previous);
15
	}
16
}
17