Package org.apache.commons.csv
Class CSVException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.commons.csv.CSVException
- All Implemented Interfaces:
Serializable
Signals a CSV exception. For example, this exception is thrown when parsing invalid input.
- Since:
- 1.12.0
- See Also:
-
Constructor Summary
ConstructorDescriptionCSVException
(String format, Object... args) Constructs a new instance with a formatted message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CSVException
Constructs a new instance with a formatted message.- Parameters:
format
- AFormatter
format string.args
- SeeString.format(String, Object...)
.- Throws:
IllegalFormatException
- SeeString.format(String, Object...)
.
-