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

org.csveed.report.GeneralError Maven / Gradle / Ivy

Go to download

Java toolkit for mapping CSV-to-Bean mapping and vice versa. Redirection to Introduction in 5 seconds!

There is a newer version: 0.8.2
Show newest version
package org.csveed.report;

import java.util.ArrayList;
import java.util.List;

public class GeneralError extends AbstractCsvError {

    public GeneralError(String message) {
        super(message);
    }

    @Override
    public List getPrintableLines() {
        return getMessageAsList();
    }

    @Override
    public List getRowParts() {
        return new ArrayList();
    }

    @Override
    public int getLineNumber() {
        return -1;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy