com.obdobion.algebrain.EquException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of algebrain Show documentation
Show all versions of algebrain Show documentation
Equation processing for Java
The newest version!
package com.obdobion.algebrain;
/**
*
* EquException class.
*
*
* @author Chris DeGreef [email protected]
*/
public class EquException extends Exception
{
private static final long serialVersionUID = 1L;
/**
*
* Constructor for EquException.
*
*/
public EquException()
{
super();
}
/**
*
* Constructor for EquException.
*
*
* @param message a {@link java.lang.String} object.
*/
public EquException(final String message)
{
super(message);
}
/**
*
* Constructor for EquException.
*
*
* @param message a {@link java.lang.String} object.
* @param cause a {@link java.lang.Throwable} object.
*/
public EquException(final String message, final Throwable cause)
{
super(message, cause);
}
/**
*
* Constructor for EquException.
*
*
* @param cause a {@link java.lang.Throwable} object.
*/
public EquException(final Throwable cause)
{
super(cause);
}
}