All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.poiji.exception.ExcelParseException Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
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