src/net/java/otr4j/crypto/OtrCryptoException.java
author Da Risk <da_risk@beem-project.com>
Sun, 13 Jan 2013 20:11:53 +0100
changeset 1015 63669480c941
parent 906 0ff0059f2ec3
permissions -rw-r--r--
Add an implementation of the SCRAM-SHA-! SASL mechanism. This implementation come from the Stroke project http://swift.im/git/stroke

package net.java.otr4j.crypto;

import net.java.otr4j.OtrException;

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

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

}