View Javadoc
1   package com.opencsv.exceptions;
2   
3   /**
4    * Superclass for checked exceptions that can be thrown while trying to decode
5    * and assign a single field.
6    *
7    * @author Andrew Rucker Jones
8    * @since 5.3
9    */
10  public abstract class CsvFieldAssignmentException extends CsvException {
11  
12      /** Nullary constructor. */
13      public CsvFieldAssignmentException() {}
14  
15      /**
16       * Constructor for initializing an error message.
17       * @param message Human-readable error message
18       */
19      public CsvFieldAssignmentException(String message) {
20          super(message);
21      }
22  }