mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 17:24:07 +02:00
Added OutOfSpaceException
This commit is contained in:
parent
206d6aa118
commit
3c504cc73b
2 changed files with 12 additions and 0 deletions
11
src/Exception/OutOfSpaceException.php
Normal file
11
src/Exception/OutOfSpaceException.php
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?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;
|
||||||
|
|
||||||
|
class OutOfSpaceException extends InvalidRequestException {
|
||||||
|
}
|
||||||
|
|
@ -31,6 +31,7 @@ class NativeState {
|
||||||
17 => '\Icewind\SMB\Exception\AlreadyExistsException',
|
17 => '\Icewind\SMB\Exception\AlreadyExistsException',
|
||||||
20 => '\Icewind\SMB\Exception\InvalidTypeException',
|
20 => '\Icewind\SMB\Exception\InvalidTypeException',
|
||||||
21 => '\Icewind\SMB\Exception\InvalidTypeException',
|
21 => '\Icewind\SMB\Exception\InvalidTypeException',
|
||||||
|
28 => '\Icewind\SMB\Exception\OutOfSpaceException',
|
||||||
39 => '\Icewind\SMB\Exception\NotEmptyException',
|
39 => '\Icewind\SMB\Exception\NotEmptyException',
|
||||||
110 => '\Icewind\SMB\Exception\TimedOutException',
|
110 => '\Icewind\SMB\Exception\TimedOutException',
|
||||||
111 => '\Icewind\SMB\Exception\ConnectionRefusedException',
|
111 => '\Icewind\SMB\Exception\ConnectionRefusedException',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue