]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/java/org/opensrf/net/xmpp/XMPPException.java
added java jabber layer
[OpenSRF.git] / src / java / org / opensrf / net / xmpp / XMPPException.java
1 package org.opensrf.net.xmpp;
2
3 /**
4  * Used for XMPP stream/authentication errors
5  */
6 public class XMPPException extends Exception {
7     private String info;
8
9     /**
10      * @param info Runtime exception information.
11      */
12     public XMPPException(String info) {
13         this.info = info;
14     }
15     public String toString() {
16         return this.info;
17     }
18 }