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

com.poiji.config.DefaultCastingError Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package com.poiji.config;

public final class DefaultCastingError {
    private String value;

    private Object defaultValue;

    private String sheetName;

    private int row;

    private int column;

    private Exception exception;

    DefaultCastingError(String value, Object defaultValue, String sheetName, int row, int column, Exception exception) {
        this.value = value;
        this.defaultValue = defaultValue;
        this.sheetName = sheetName;
        this.row = row;
        this.column = column;
        this.exception = exception;
    }

    public String getValue() {
        return value;
    }

    public Object getDefaultValue() {
        return defaultValue;
    }

    public String getSheetName() {
        return sheetName;
    }

    public int getRow() {
        return row;
    }

    public int getColumn() {
        return column;
    }

    public Exception getException() {
        return exception;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy