src/net/java/otr4j/crypto/OtrCryptoException.java
author Vincent V. <marseille@beem-project.com>
Thu, 10 May 2012 14:03:11 +0200
changeset 1002 847e7f7d88c1
parent 928 0ff0059f2ec3
permissions -rw-r--r--
API=8 because of the android:installLocation in the AndroidManifest.xml Checkstyle

package net.java.otr4j.crypto;

import net.java.otr4j.OtrException;

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

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

}