src/net/java/otr4j/OtrException.java
author Da Risk <da_risk@beem-project.com>
Wed, 15 May 2013 11:35:03 +0200
changeset 1038 ae7bea323864
parent 940 21d4502baa67
permissions -rw-r--r--
Add Android PagerSlidingTabStrip library, an Interactive paging indicator widget This library can be found at https://github.com/astuetz/PagerSlidingTabStrip/ and we currently use the v1.0 tag

package net.java.otr4j;


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

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