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

gov.nist.math.jampack.ZException Maven / Gradle / Ivy

The newest version!
package gov.nist.math.jampack;

/**
 * This is the exception class for Jampack. Since most errors in matrix
 * algorithms are unrecoverable, the standard response is to pass an error
 * message up the line.
 * 
 * @version Pre-alpha, 1999-02-24
 * @author G. W. Stewart
 */
@SuppressWarnings("serial")
public final class ZException extends RuntimeException {
    public ZException(String s) {
        super(s);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy