1 package net.java.otr4j;
2
3
4 public class OtrException extends Exception {
5 private static final long serialVersionUID = 1L;
6
7 public OtrException(Exception e){
8 super(e);
9 }
10 }