KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis > transport > jms > InvokeTimeoutException


1 /*
2  * Copyright 2001, 2002,2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16
17 package org.apache.axis.transport.jms;
18
19 /**
20  * The <code>InvokeTimeoutException</code> is thrown when a method cannot
21  * complete processing within the time allotted. This occurs most often
22  * when the broker has failed and the client is unable to reconnect. This
23  * may be thrown from any method within the wsclient that interacts with the
24  * broker. The timeout is defined within the environment parameter to
25  * <code>createConnector</code> method in <code>JMSConnectorFactory</code>
26  * The key in the table is <code>IJMSConstants.INTERACT_TIMEOUT_TIME</code>
27  *
28  * @author Jaime Meritt (jmeritt@sonicsoftware.com)
29  * @author Richard Chung (rchung@sonicsoftware.com)
30  * @author Dave Chappell (chappell@sonicsoftware.com)
31  *
32  */

33 public class InvokeTimeoutException extends InvokeException
34 {
35     public InvokeTimeoutException(String JavaDoc message)
36     {
37         super(message);
38     }
39 }
40
Popular Tags