diff options
author | Rafael H. Schloming <rhs@apache.org> | 2008-03-07 16:57:43 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2008-03-07 16:57:43 +0000 |
commit | 205ae0e54ba0c5fdeb5d2e884997c80cb52f1799 (patch) | |
tree | cc85d43a8e09cb15111290f9302c4c6188c0784c /python/qpid/exceptions.py | |
parent | e385ba8c6612ac396a4d9ecbd5c8ffa18977e25a (diff) | |
download | qpid-python-205ae0e54ba0c5fdeb5d2e884997c80cb52f1799.tar.gz |
added session.sync(); session.auto_sync; made transfers not auto-complete; fixed bug in RangedSet
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@634744 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/exceptions.py')
-rw-r--r-- | python/qpid/exceptions.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/python/qpid/exceptions.py b/python/qpid/exceptions.py new file mode 100644 index 0000000000..2136793d3b --- /dev/null +++ b/python/qpid/exceptions.py @@ -0,0 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +class Timeout(Exception): pass |