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

org.molgenis.r.MolgenisRException Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.r;

public class MolgenisRException extends RuntimeException
{
	private static final long serialVersionUID = 4675578564750997809L;

	public MolgenisRException()
	{
	}

	public MolgenisRException(String message)
	{
		super(message);
	}

	public MolgenisRException(Throwable cause)
	{
		super(cause);
	}

	public MolgenisRException(String message, Throwable cause)
	{
		super(message, cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy