spreadsheet.mapper.w2f.write.WorkbookWriteException 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.w2f.write;
/**
* Created by hanwen on 16/1/7.
*/
public class WorkbookWriteException extends RuntimeException {
public WorkbookWriteException() {
super();
}
public WorkbookWriteException(String message) {
super(message);
}
public WorkbookWriteException(String message, Throwable cause) {
super(message, cause);
}
public WorkbookWriteException(Throwable cause) {
super(cause);
}
protected WorkbookWriteException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy