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

uk.ac.starlink.table.TableFormatException Maven / Gradle / Ivy

package uk.ac.starlink.table;

import java.io.IOException;

/**
 * Exception thrown if a table handler fails to parse a table because it
 * does not match the format it can decode.
 */
public class TableFormatException extends IOException {

    public TableFormatException( String message ) {
        super( message );
    }

    public TableFormatException() {
        super();
    }

    public TableFormatException( String message, Throwable cause ) {
        super( message );
        initCause( cause );
    }

    public TableFormatException( Throwable cause ) {
        super();
        initCause( cause );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy