com.meliorbis.numerics.NumericsException 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;
public class NumericsException extends RuntimeException
{
private static final long serialVersionUID = 1L;
public NumericsException()
{
super();
}
public NumericsException(String arg0_, Throwable arg1_)
{
super(arg0_, arg1_);
}
public NumericsException(String arg0_)
{
super(arg0_);
}
public NumericsException(Throwable arg0_)
{
super(arg0_);
}
}