Implement spring Conduit bean registry and lots of cleanup
[jpim.git] / src / de / j32 / pimstuff / conduit / ConduitException.java
1 package de.j32.pimstuff.conduit;
2
3 public class ConduitException
4         extends Exception
5 {
6         private static final long serialVersionUID = 1L;
7
8         public ConduitException()
9         {}
10         
11         public ConduitException(String message)
12         {
13                 super(message);
14         }
15         
16         public ConduitException(Exception e)
17         {
18                 super(e);
19         }
20
21 }