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

com.eworkcloud.excel.exception.ExcelException Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package com.eworkcloud.excel.exception;

import lombok.Getter;

@Getter
public class ExcelException extends RuntimeException {

    private final int rowIndex;
    private final int columnIndex;
    private final String columnName;

    public ExcelException(int rowIndex, int columnIndex, String columnName, Throwable cause) {
        super(cause);
        this.rowIndex = rowIndex;
        this.columnIndex = columnIndex;
        this.columnName = columnName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy