net.sf.jett.exception.TransformException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jett-core Show documentation
Show all versions of jett-core Show documentation
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 TransformException
is a general-purpose exception for when
* RuntimeExceptions
occur during transformation.
*
* @author Randy Gettman
* @since 0.11.0
*/
public class TransformException extends RuntimeException
{
/**
* Create a TransformException
.
*/
public TransformException()
{
super();
}
/**
* Create a TransformException
with the given message.
* @param message The message.
*/
public TransformException(String message)
{
super(message);
}
/**
* Create a TransformException
.
* @param cause The cause.
*/
public TransformException(Throwable cause)
{
super(cause);
}
/**
* Create a TransformException
with the given message.
* @param message The message.
* @param cause The cause.
*/
public TransformException(String message, Throwable cause)
{
super(message, cause);
}
}