mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 09:14:06 +02:00
Merge pull request #59 from jkroepke/error-28
Added OutOfSpaceException
This commit is contained in:
commit
8394551bf2
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',
|
||||
20 => '\Icewind\SMB\Exception\InvalidTypeException',
|
||||
21 => '\Icewind\SMB\Exception\InvalidTypeException',
|
||||
28 => '\Icewind\SMB\Exception\OutOfSpaceException',
|
||||
39 => '\Icewind\SMB\Exception\NotEmptyException',
|
||||
110 => '\Icewind\SMB\Exception\TimedOutException',
|
||||
111 => '\Icewind\SMB\Exception\ConnectionRefusedException',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue