src/net/java/otr4j/crypto/OtrCryptoException.java
author Da Risk <da_risk@beem-project.com>
Tue, 22 Jan 2013 15:01:56 +0100
changeset 1021 b47960e53050
parent 906 0ff0059f2ec3
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.crypto;

import net.java.otr4j.OtrException;

@SuppressWarnings("serial")
public class OtrCryptoException extends OtrException {

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

}