src/net/java/otr4j/crypto/OtrCryptoException.java
author Nikita Kozlov <nikita@elyzion.net>
Mon, 23 Jan 2012 17:34:56 +0100
changeset 952 0867bf998775
parent 906 0ff0059f2ec3
permissions -rw-r--r--
doesn't force color to handle correctly devices with dark button background.

package net.java.otr4j.crypto;

import net.java.otr4j.OtrException;

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

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

}