src/net/java/otr4j/OtrException.java
author Da Risk <da_risk@beem-project.com>
Sun, 30 Sep 2012 15:40:07 +0200
changeset 998 9bb5749a8c4f
parent 940 21d4502baa67
permissions -rw-r--r--
Fix bug: on the very first launch the account is not configured if you choose system account.
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
}