Begin versioning.
[fits.git] / src / nom / tam / fits / HeaderCardException.java
1 package nom.tam.fits;
2
3 /*
4  * Copyright: Thomas McGlynn 1997-1998.
5  * This code may be used for any purpose, non-commercial
6  * or commercial so long as this copyright notice is retained
7  * in the source code or included in or referred to in any
8  * derived software.
9  * Many thanks to David Glowacki (U. Wisconsin) for substantial
10  * improvements, enhancements and bug fixes.
11  */
12
13 /* This class was contributed by David Glowacki */
14 public class HeaderCardException
15         extends FitsException {
16
17     public HeaderCardException() {
18         super();
19     }
20
21     public HeaderCardException(String s) {
22         super(s);
23     }
24 }
25