com.poiji.exception.ExcelParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poiji2 Show documentation
Show all versions of poiji2 Show documentation
Perfect annotation based library to read and write excel files
package com.poiji.exception;
public final class ExcelParseException extends PoijiException {
private final String cellValue;
private final String fieldName;
public ExcelParseException(final Throwable cause, final String cellValue, final String fieldName) {
super(cause.getMessage(), cause);
this.cellValue = cellValue;
this.fieldName = fieldName;
}
public String getCellValue() {
return cellValue;
}
public String getFieldName() {
return fieldName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy