KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > remoting > ConnectionFailedException


1 /***************************************
2  * *
3  * JBoss: The OpenSource J2EE WebOS *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9 package org.jboss.remoting;
10
11 /**
12  * ConnectionFailedException is a RuntimeException that is raised when a remote connection
13  * fails.
14  *
15  * @author <a HREF="mailto:jhaynie@vocalocity.net">Jeff Haynie</a>
16  * @version $Revision: 1.3 $
17  */

18 public class ConnectionFailedException extends RuntimeException JavaDoc
19 {
20    /**
21     * @since 4.0.1
22     */

23    static final long serialVersionUID = 1353105726630086615L;
24
25    public ConnectionFailedException()
26    {
27       super();
28    }
29
30    public ConnectionFailedException(String JavaDoc msg)
31    {
32       super(msg);
33    }
34
35    public ConnectionFailedException(String JavaDoc msg, Exception JavaDoc ex)
36    {
37       super(msg, ex);
38    }
39 }
40
Popular Tags