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

de.siegmar.fastcsv.reader.CsvParseException Maven / Gradle / Ivy

Go to download

Lightning-fast, dependency-free CSV library that conforms to RFC standards.

There is a newer version: 3.4.0
Show newest version
package de.siegmar.fastcsv.reader;

/**
 * Exception to be thrown when malformed csv data is read.
 */
public class CsvParseException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    /**
     * Construct exception with message.
     *
     * @param message the cause for this exception
     */
    public CsvParseException(final String message) {
        super(message);
    }

    /**
     * Construct exception with message and cause.
     *
     * @param message the cause for this exception
     * @param cause the cause for this exception
     */
    public CsvParseException(final String message, final Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy