- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.siegmar.fastcsv.reader.CsvParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class CsvParseException extends java.lang.RuntimeException
Exception to be thrown when malformed csv data is read.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description CsvParseException(java.lang.String message)
Construct exception with a message.CsvParseException(java.lang.String message, java.lang.Throwable cause)
Construct exception with message and cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CsvParseException
public CsvParseException(java.lang.String message)
Construct exception with a message.- Parameters:
message
- the cause for this exception
-
CsvParseException
public CsvParseException(java.lang.String message, java.lang.Throwable cause)
Construct exception with message and cause.- Parameters:
message
- the cause for this exceptioncause
- the cause for this exception
-
-