KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jivesoftware > messenger > RemoteConnectionFailedException


1 /**
2  * $RCSfile: RemoteConnectionFailedException.java,v $
3  * $Revision: 1.1 $
4  * $Date: 2005/05/23 17:45:48 $
5  *
6  * Copyright (C) 2004 Jive Software. All rights reserved.
7  *
8  * This software is published under the terms of the GNU Public License (GPL),
9  * a copy of which is included in this distribution.
10  */

11
12 package org.jivesoftware.messenger;
13
14 /**
15  * Thrown when something failed verifying the key of a Originating Server with an Authoritative
16  * Server in a dialback operation.
17  *
18  * @author Gaston Dombiak
19  */

20 public class RemoteConnectionFailedException extends Exception JavaDoc {
21
22     public RemoteConnectionFailedException() {
23         super();
24     }
25
26     public RemoteConnectionFailedException(String JavaDoc msg) {
27         super(msg);
28     }
29 }
30
Popular Tags