net.sf.jxls.exception.ParsePropertyException Maven / Gradle / Ivy
Go to download
jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates
package net.sf.jxls.exception;
/**
* This exception is thrown by {@link net.sf.jxls.transformer.XLSTransformer} when problems with dynamic properties access occur
*
* @author Leonid Vysochyn
*/
public class ParsePropertyException extends RuntimeException {
public ParsePropertyException() {
}
public ParsePropertyException(String message) {
super(message);
}
}