src/net/java/otr4j/OtrException.java
author Da Risk <da_risk@beem-project.com>
Tue, 22 Jan 2013 15:01:56 +0100
changeset 1021 b47960e53050
parent 940 21d4502baa67
permissions -rw-r--r--
Discover Server features right after connection. In the same time, postpone the load of the roster. This avoid a timeout on the discovery request sent to the server. The timeout is caused by receiving big rosters.

package net.java.otr4j;


public class OtrException extends Exception {
    private static final long serialVersionUID = 1L;

    public OtrException(Exception e){
	super(e);
    }
}