Initial
[frank.git] / prod / net / jaekl / frank / FrankException.java
1 package net.jaekl.frank;
2
3 import java.lang.Exception;
4
5 public class FrankException extends Exception {
6         private static final long serialVersionUID = 1L;
7
8         public FrankException(Throwable cause) {
9                 super(cause);
10         }
11 }