Begin versioning.
[fits.git] / src / nom / tam / fits / TruncatedFileException.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 /** This exception is thrown when an EOF is detected in the middle
13  * of an HDU.
14  */
15 public class TruncatedFileException
16         extends FitsException {
17
18     public TruncatedFileException() {
19         super();
20     }
21
22     public TruncatedFileException(String msg) {
23         super(msg);
24     }
25 }