Package com.opencsv.exceptions
Class CsvFieldAssignmentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.opencsv.exceptions.CsvException
com.opencsv.exceptions.CsvFieldAssignmentException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CsvConstraintViolationException
,CsvDataTypeMismatchException
,CsvRequiredFieldEmptyException
,CsvValidationException
Superclass for checked exceptions that can be thrown while trying to decode
and assign a single field.
- Since:
- 5.3
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNullary constructor.CsvFieldAssignmentException
(String message) Constructor for initializing an error message. -
Method Summary
Methods inherited from class com.opencsv.exceptions.CsvException
getLine, getLineNumber, setLine, setLineNumber
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CsvFieldAssignmentException
public CsvFieldAssignmentException()Nullary constructor. -
CsvFieldAssignmentException
Constructor for initializing an error message.- Parameters:
message
- Human-readable error message
-