diff options
author | Martin Ritchie <ritchiem@apache.org> | 2007-01-22 15:05:58 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2007-01-22 15:05:58 +0000 |
commit | 5401782b97dd4185b122f234e67373574b16671d (patch) | |
tree | 470c6bddce4f7e39a1b00c2e6794c725dfa741f9 /java/common/src | |
parent | 80653440840bbd4a846835688bda4ce418e5323d (diff) | |
download | qpid-python-5401782b97dd4185b122f234e67373574b16671d.tar.gz |
QPID-310 Propagated JMS Exception to client.
QPID-308 Configurable timeout on blockForFrame.
Timeouts added but need to be configurable.
QPID-311 Dispatcher Thread is not thread safe.
Added the missing Synchronized code and renamed vars to make it more readable
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@498637 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common/src')
-rw-r--r-- | java/common/src/main/java/org/apache/qpid/AMQTimeoutException.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/java/common/src/main/java/org/apache/qpid/AMQTimeoutException.java b/java/common/src/main/java/org/apache/qpid/AMQTimeoutException.java new file mode 100644 index 0000000000..6af681f479 --- /dev/null +++ b/java/common/src/main/java/org/apache/qpid/AMQTimeoutException.java @@ -0,0 +1,29 @@ +/* + * 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. + * + * + */ +package org.apache.qpid; + +public class AMQTimeoutException extends AMQException +{ + public AMQTimeoutException(String message) + { + super(message); + } +} |