diff options
author | venkata edara <redara@redhat.com> | 2017-05-10 13:27:38 +0530 |
---|---|---|
committer | Prashanth Pai <ppai@redhat.com> | 2017-05-11 05:48:27 +0000 |
commit | 513988915aa1af13a989d062b021fe1562cbf18d (patch) | |
tree | 1c281911e3a9bfa97f8a7285f20691cb77c45c1d /gluster/swift/common/exceptions.py | |
parent | e9c2c5eb55e1012ccce0ce51ac48bed0c0f1d4b7 (diff) |
Rebase to Swift 2.10.1 (newton)
Change-Id: I53a962c9a301089c8aed0b43c50f944c30225944
Signed-off-by: venkata edara <redara@redhat.com>
Reviewed-on: https://review.gluster.org/16653
Reviewed-by: Prashanth Pai <ppai@redhat.com>
Tested-by: Prashanth Pai <ppai@redhat.com>
Diffstat (limited to 'gluster/swift/common/exceptions.py')
-rw-r--r-- | gluster/swift/common/exceptions.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gluster/swift/common/exceptions.py b/gluster/swift/common/exceptions.py index 8260dd9..4dc2878 100644 --- a/gluster/swift/common/exceptions.py +++ b/gluster/swift/common/exceptions.py @@ -13,6 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from swift.common.exceptions import SwiftException + class GlusterFileSystemOSError(OSError): pass @@ -48,3 +50,7 @@ class AlreadyExistsAsFile(GlusterfsException): class DiskFileContainerDoesNotExist(GlusterfsException): pass + + +class ThreadPoolDead(SwiftException): + pass |