mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 17:24:07 +02:00
15 lines
399 B
PHP
15 lines
399 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2014 Robin Appelman <robin@icewind.nl>
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
namespace Icewind\SMB\Exception;
|
|
|
|
use Throwable;
|
|
|
|
final class RevisionMismatchException extends Exception {
|
|
public function __construct(string $message = 'Protocol version mismatch', int $code = 0, ?Throwable $previous = null) {
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
}
|