src/net/java/otr4j/OtrException.java
author Da Risk <da_risk@beem-project.com>
Wed, 31 Oct 2012 23:11:14 +0100
changeset 1005 4c7edc276676
parent 940 21d4502baa67
permissions -rw-r--r--
Switch to Florian Shmauss maintained version of asmack. See doc/asmack-beem/README.txt for more information on how to build the asmack jar. The upstream asmack has a better implementation of XEP-0115 EntityCapabilities. So this commit remove the specific Beem implementation of this XEP and switch to the asmack one.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
906
0ff0059f2ec3 initial commit adding otr to beem, it's based on http://bitbucket.org/romanzadov/beem, with a better beem integration
Nikita Kozlov <nikita@mbdsys.com>
parents:
diff changeset
     1
package net.java.otr4j;
0ff0059f2ec3 initial commit adding otr to beem, it's based on http://bitbucket.org/romanzadov/beem, with a better beem integration
Nikita Kozlov <nikita@mbdsys.com>
parents:
diff changeset
     2
936
f78522cede87 checkstyle
Nikita Kozlov <nikita@elyzion.net>
parents: 906
diff changeset
     3
906
0ff0059f2ec3 initial commit adding otr to beem, it's based on http://bitbucket.org/romanzadov/beem, with a better beem integration
Nikita Kozlov <nikita@mbdsys.com>
parents:
diff changeset
     4
public class OtrException extends Exception {
940
21d4502baa67 checkstyle
Nikita Kozlov <nikita@elyzion.net>
parents: 936
diff changeset
     5
    private static final long serialVersionUID = 1L;
21d4502baa67 checkstyle
Nikita Kozlov <nikita@elyzion.net>
parents: 936
diff changeset
     6
21d4502baa67 checkstyle
Nikita Kozlov <nikita@elyzion.net>
parents: 936
diff changeset
     7
    public OtrException(Exception e){
21d4502baa67 checkstyle
Nikita Kozlov <nikita@elyzion.net>
parents: 936
diff changeset
     8
	super(e);
21d4502baa67 checkstyle
Nikita Kozlov <nikita@elyzion.net>
parents: 936
diff changeset
     9
    }
906
0ff0059f2ec3 initial commit adding otr to beem, it's based on http://bitbucket.org/romanzadov/beem, with a better beem integration
Nikita Kozlov <nikita@mbdsys.com>
parents:
diff changeset
    10
}