
org.jxls.util.CannotOpenWorkbookException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls Show documentation
Show all versions of jxls Show documentation
Small library for Excel generation based on XLS templates
package org.jxls.util;
import org.jxls.common.JxlsException;
/**
* JXLS exception: Excel file cannot be opened
*
* If this exception occurs:
* - Check the filename.
* - Check the file format. (.xlsx files are Zip files.)
* - Check whether you can open the Excel file with Microsoft Excel.
* - Probably you must recreate the Excel file from scratch. Use of Microsoft Excel and XLSX format is recommended.
*/
public class CannotOpenWorkbookException extends JxlsException {
private static final long serialVersionUID = -3618771481378341600L;
public CannotOpenWorkbookException(Throwable e) {
super(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy