java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.siegmar.fastcsv.reader.CsvParseException
- All Implemented Interfaces:
Serializable
Exception to be thrown when malformed csv data is read.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCsvParseException
(String message) Construct exception with a message.CsvParseException
(String message, Throwable cause) Construct exception with message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
CsvParseException
Construct exception with a message.- Parameters:
message
- the cause for this exception
-
CsvParseException
Construct exception with message and cause.- Parameters:
message
- the cause for this exceptioncause
- the cause for this exception
-