com.opencsv.bean.exceptionhandler.ExceptionHandlerIgnore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opencsv Show documentation
Show all versions of opencsv Show documentation
A simple library for reading and writing CSV in Java
package com.opencsv.bean.exceptionhandler;
import com.opencsv.exceptions.CsvException;
/**
* An exception handler that always ignores exceptions raised.
*
* @author Andrew Rucker Jones
* @since 5.2
*/
final public class ExceptionHandlerIgnore implements CsvExceptionHandler {
/**
* Default Constructor.
*/
public ExceptionHandlerIgnore() {
}
@Override
public CsvException handleException(CsvException e) {
return null;
}
}