src/net/java/otr4j/crypto/OtrCryptoException.java
author Da Risk <da_risk@beem-project.com>
Thu, 26 Jan 2012 23:54:46 +0100
changeset 985 24474027eb45
parent 928 0ff0059f2ec3
permissions -rw-r--r--
Complete the avatar provider to support insert update and delete. It is now usable following the standard Android interface.

package net.java.otr4j.crypto;

import net.java.otr4j.OtrException;

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

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

}