src/net/java/otr4j/OtrException.java
author Da Risk <da_risk@beem-project.com>
Sun, 23 Sep 2012 00:49:33 +0200
changeset 987 dd0ddb657924
parent 940 21d4502baa67
permissions -rw-r--r--
Create and connect totally asynchronously on start of the BeemService. This fix crash when the service is restart by Android.

package net.java.otr4j;


public class OtrException extends Exception {
    private static final long serialVersionUID = 1L;

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