1 package com.opencsv.bean.exceptionhandler;
2
3 import com.opencsv.exceptions.CsvException;
4
5 /**
6 * An exception handler that always ignores exceptions raised.
7 *
8 * @author Andrew Rucker Jones
9 * @since 5.2
10 */
11 final public class ExceptionHandlerIgnore implements CsvExceptionHandler {
12
13 /**
14 * Default Constructor.
15 */
16 public ExceptionHandlerIgnore() {
17 }
18
19 @Override
20 public CsvException handleException(CsvException e) {
21 return null;
22 }
23 }