spreadsheet.mapper.w2o.validation.WorkbookValidateException Maven / Gradle / Ivy
package spreadsheet.mapper.w2o.validation;
/**
* Created by hanwen on 2016/12/28.
*/
public class WorkbookValidateException extends RuntimeException {
public WorkbookValidateException() {
super();
}
public WorkbookValidateException(String message) {
super(message);
}
public WorkbookValidateException(String message, Throwable cause) {
super(message, cause);
}
public WorkbookValidateException(Throwable cause) {
super(cause);
}
protected WorkbookValidateException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy