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

net.sf.jett.exception.FormulaParseException Maven / Gradle / Ivy

Go to download

JETT is a Java API that reads an Excel spreadsheet as a template, takes your data, and creates a new Excel spreadsheet that contains your data, formatted as in the template. It works with .xls and .xlsx template spreadsheets.

The newest version!
package net.sf.jett.exception;

/**
 * A FormulaParseException occurs when there is an error parsing
 * formula text.
 *
 * @author Randy Gettman
 */
public class FormulaParseException extends ParseException
{

    /**
     * Create a FormulaParseException.
     */
    public FormulaParseException()
    {
        super();
    }

    /**
     * Create a FormulaParseException with the given message.
     * @param message The message.
     */
    public FormulaParseException(String message)
    {
        super(message);
    }

    /**
     * Create a FormulaParseException.
     * @param cause The cause.
     */
    public FormulaParseException(Throwable cause)
    {
        super(cause);
    }

    /**
     * Create a FormulaParseException with the given message.
     * @param message The message.
     * @param cause The cause.
     */
    public FormulaParseException(String message, Throwable cause)
    {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy