Class CSVOException

All Implemented Interfaces:
Serializable

public class CSVOException extends RuntimeException
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 Details

    • CSVOException

      public CSVOException()
      Default Constructor.
    • CSVOException

      public CSVOException(String message)
      Constructor accepting a message string.
      Parameters:
      message - the error message
    • CSVOException

      public CSVOException(String message, Throwable cause)
      Constructor accepting a message and a root cause exception to embed.
      Parameters:
      message - the error message
      cause - the root cause exception
    • CSVOException

      public CSVOException(Throwable cause)
      Constructor accepting the root cause exception to embed.
      Parameters:
      cause - the root cause exception