io.github.relbraun.poi.SpreadsheetReadException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poi-object-mapper Show documentation
Show all versions of poi-object-mapper Show documentation
Objects mapper for Office formats - Excel files, Spreadsheets, etc.
The newest version!
package io.github.relbraun.poi;
public class SpreadsheetReadException extends Exception {
private static final long serialVersionUID = 1L;
// Constructors
// ------------------------------------------------------------------------
public SpreadsheetReadException(String message, Throwable cause) {
super(message, cause);
}
public SpreadsheetReadException(String message) {
super(message);
}
}