src/net/java/otr4j/crypto/OtrCryptoException.java
author Da Risk <da_risk@beem-project.com>
Sun, 28 Oct 2012 14:20:33 +0100
changeset 1003 d793c2b09350
parent 906 0ff0059f2ec3
permissions -rw-r--r--
Made the PepSubManager really use pep node instead of pubsub node if both are available

package net.java.otr4j.crypto;

import net.java.otr4j.OtrException;

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

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

}