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

com.opencsv.bean.exceptionhandler.ExceptionHandlerQueue Maven / Gradle / Ivy

package com.opencsv.bean.exceptionhandler;

import com.opencsv.exceptions.CsvException;

/**
 * An exception handler that always queues exceptions raised.
 *
 * @author Andrew Rucker Jones
 * @since 5.2
 */
final public class ExceptionHandlerQueue implements CsvExceptionHandler {

    /**
     * Default Constructor.
     */
    public ExceptionHandlerQueue() {
    }

    @Override
    public CsvException handleException(CsvException e) {
        return e;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy