Package org.csvobjects.csv.exceptions
Class CSVOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.csvobjects.csv.exceptions.CSVOException
- All Implemented Interfaces:
Serializable
An unchecked exception for the CSV Objects framework, thrown for internal
framework failures that are not expected to be recoverable by callers
(invalid mapping/formatter configuration, malformed metadata, and similar
setup-time errors).
- 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
-