com.meliorbis.numerics.fixedpoint.FPStrategyException 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.fixedpoint;
/**
* When fixed-point strategies fail
*
* @author Tobias Grasl
*/
public class FPStrategyException extends Exception
{
public FPStrategyException(String arg0_)
{
super(arg0_);
}
public FPStrategyException(String arg0_, Throwable arg1_)
{
super(arg0_, arg1_);
}
}