mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-04 01:34:07 +02:00
add network reset error, fix connection reset
This commit is contained in:
parent
5330edcc57
commit
b48dfc0927
3 changed files with 24 additions and 0 deletions
11
src/Exception/ConnectionAbortedException.php
Normal file
11
src/Exception/ConnectionAbortedException.php
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Copyright (c) 2020 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;
|
||||
|
||||
class ConnectionAbortedException extends ConnectException {
|
||||
}
|
||||
11
src/Exception/ConnectionResetException.php
Normal file
11
src/Exception/ConnectionResetException.php
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Copyright (c) 2020 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;
|
||||
|
||||
class ConnectionResetException extends ConnectException {
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue