io.github.relbraun.poi.UnsupportedException 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 UnsupportedException extends RuntimeException {
private static final long serialVersionUID = 3103542175797043236L;
// Constructors
// ------------------------------------------------------------------------
public UnsupportedException(String message, Throwable cause) {
super(message, cause);
}
public UnsupportedException(String message) {
super(message);
}
}