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

com.meliorbis.numerics.NumericsException 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;

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_);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy