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

uk.ac.starlink.util.LoadException Maven / Gradle / Ivy

package uk.ac.starlink.util;

/**
 * Exception thrown if an object creation fails for reasonable reasons.
 *
 * @author   Mark Taylor
 * @since    10 Aug 2005
 */
public class LoadException extends Exception {
    LoadException( String msg, Throwable e ) {
        super( msg, e );
    }
    LoadException( String msg ) {
        super( msg );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy