com.meliorbis.numerics.function.FunctionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Numerics Show documentation
Show all versions of Numerics Show documentation
A library for working with large multi-dimensional arrays and the functions they represent
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_);
}
}