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

com.meliorbis.numerics.function.FunctionException Maven / Gradle / Ivy

Go to download

A library for working with large multi-dimensional arrays and the functions they represent

There is a newer version: 1.2
Show newest version
package com.meliorbis.numerics.function;

import com.meliorbis.numerics.NumericsException;

/**
 * @author Tobias Grasl
 */
public class FunctionException extends NumericsException
{
    public FunctionException(String arg0_, Throwable arg1_)
    {
        super(arg0_, arg1_);
    }

    public FunctionException(String arg0_)
    {
        super(arg0_);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy