
spreadsheet.mapper.f2w.read.WorkbookReadException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spreadsheet-mapper Show documentation
Show all versions of spreadsheet-mapper Show documentation
java mapping library between spreadsheet and object
The newest version!
package spreadsheet.mapper.f2w.read;
/**
* Created by hanwen on 16/1/7.
*/
public class WorkbookReadException extends RuntimeException {
public WorkbookReadException() {
super();
}
public WorkbookReadException(String message) {
super(message);
}
public WorkbookReadException(String message, Throwable cause) {
super(message, cause);
}
public WorkbookReadException(Throwable cause) {
super(cause);
}
public WorkbookReadException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy