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:
java.io.Serializable
public class CSVException extends java.io.IOExceptionSignals a CSV exception. For example, this exception is thrown when parsing invalid input.- Since:
- 1.12.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description CSVException(java.lang.String format, java.lang.Object... args)Constructs a new instance with a formatted message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CSVException
public CSVException(java.lang.String format, java.lang.Object... args)Constructs a new instance with a formatted message.- Parameters:
format- AFormatterformat string.args- SeeString.format(String, Object...).- Throws:
java.util.IllegalFormatException- SeeString.format(String, Object...).
-
-