![JAR search and dependency download from the Maven repository](/logo.png)
com.opencsv.exceptions.CsvFieldAssignmentException 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
The newest version!
package com.opencsv.exceptions;
/**
* Superclass for checked exceptions that can be thrown while trying to decode
* and assign a single field.
*
* @author Andrew Rucker Jones
* @since 5.3
*/
public abstract class CsvFieldAssignmentException extends CsvException {
/** Nullary constructor. */
public CsvFieldAssignmentException() {}
/**
* Constructor for initializing an error message.
* @param message Human-readable error message
*/
public CsvFieldAssignmentException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy