package nom.tam.fits;
/*
* Copyright: Thomas McGlynn 1997-1998.
* This code may be used for any purpose, non-commercial
* or commercial so long as this copyright notice is retained
* in the source code or included in or referred to in any
* derived software.
*
* Many thanks to David Glowacki (U. Wisconsin) for substantial
* improvements, enhancements and bug fixes.
*/
/** This exception indicates that an error
* was detected while parsing a FITS header record.
*/
public class BadHeaderException
extends FitsException
{
public BadHeaderException () { super(); }
public BadHeaderException (String msg) { super(msg); }
}