@CodeReview(reviewer="Kevin R. Dixon",date="2008-02-08",changesNeeded=false,comments="Minor cosmetic changes. Otherwise, looks fine.") @CodeReview(reviewer="Kevin R. Dixon",date="2006-07-18",changesNeeded=false,comments="Looks fine") public class CSVParseException extends java.lang.Exception
CSVParseException class implements an exception that is
thrown while parsing a CSV file.| Constructor and Description |
|---|
CSVParseException()
Creates a new instance of
CSVParseException without
detail message. |
CSVParseException(java.lang.String message)
Constructs an instance of
CSVParseException with the
specified detail message. |
CSVParseException(java.lang.String message,
java.lang.Throwable cause)
Constructs an instance of
CSVParseException with the
given message and cause of the exception. |
CSVParseException(java.lang.Throwable cause)
Constructs an instance of
CSVParseException with the
given cause of the exception. |
public CSVParseException()
CSVParseException without
detail message.public CSVParseException(java.lang.String message)
CSVParseException with the
specified detail message.message - The detail message.public CSVParseException(java.lang.Throwable cause)
CSVParseException with the
given cause of the exception.cause - The cause of the exception.public CSVParseException(java.lang.String message,
java.lang.Throwable cause)
CSVParseException with the
given message and cause of the exception.message - The detailed message.cause - The cause of the exception.