All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.ac.starlink.fits.HeaderValueException Maven / Gradle / Ivy

There is a newer version: 4.3
Show newest version
package uk.ac.starlink.fits;

import java.io.IOException;

/**
 * Indicates a problem with a FITS header card.
 *
 * @author   Mark Taylor
 * @since    4 Mar 2022
 */
public class HeaderValueException extends IOException {

    /**
     * No-arg constructor.
     */
    public HeaderValueException() {
        super();
    }

    /**
     * Constructor.
     *
     * @param  msg   error message
     */
    public HeaderValueException( String msg ) {
        super( msg );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy