src/net/java/otr4j/crypto/OtrCryptoException.java
author Da Risk <da_risk@beem-project.com>
Sun, 23 Sep 2012 03:22:02 +0200
changeset 988 586e34fc7594
parent 906 0ff0059f2ec3
permissions -rw-r--r--
Update the LicenseHeader file

package net.java.otr4j.crypto;

import net.java.otr4j.OtrException;

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

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

}