Begin versioning.
[fits.git] / src / nom / tam / util / TableException.java
1 package nom.tam.util;
2 /*
3  * Copyright: Thomas McGlynn 1997-1998.
4  * This code may be used for any purpose, non-commercial
5  * or commercial so long as this copyright notice is retained
6  * in the source code or included in or referred to in any
7  * derived software.
8  */
9
10 public class TableException extends Exception {
11
12     public TableException() {
13         super();
14     }
15
16     public TableException(String msg) {
17         super(msg);
18     }
19 }