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