Package net.sf.anupam.csv.exceptions
Class CSVOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
net.sf.anupam.csv.exceptions.CSVOException
- All Implemented Interfaces:
Serializable
A checked exception for CSV Objects framework. This exception is used internally
within the framework.
- Version:
- $Revision$
- Author:
- Anupam Sengupta
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault Constructor.CSVOException(String message) Constructor accepting a message string.CSVOException(String message, Throwable cause) Constructor accepting a message and a root cause exception to embed.CSVOException(Throwable cause) Constructor accepting the root cause exception to embed. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CSVOException
public CSVOException()Default Constructor. -
CSVOException
Constructor accepting a message string.- Parameters:
message- the error message
-
CSVOException
Constructor accepting a message and a root cause exception to embed.- Parameters:
message- the error messagecause- the root cause exception
-
CSVOException
Constructor accepting the root cause exception to embed.- Parameters:
cause- the root cause exception
-