Class CsvFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.deephaven.DeephavenException
com.illumon.iris.db.tables.utils.csv.CsvFormatException
- All Implemented Interfaces:
Serializable
Thrown primarily when an unsupported format is specified
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault ConstructorCsvFormatException
(String reason) Constructor that supports taking a detailed message describing the error.CsvFormatException
(String reason, Throwable cause) Constructor that builds aCsvFormatException
using the passed in message and optional cause.CsvFormatException
(Throwable cause) Constructor that builds aCsvFormatException
using the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CsvFormatException
public CsvFormatException()Default Constructor -
CsvFormatException
Constructor that supports taking a detailed message describing the error. SeeException(String)
- Parameters:
reason
- A detailed message describing the error.
-
CsvFormatException
Constructor that builds aCsvFormatException
using the specified cause. SeeException(Throwable)
- Parameters:
cause
- The passed in cause.
-
CsvFormatException
Constructor that builds aCsvFormatException
using the passed in message and optional cause. SeeException(String, Throwable)
- Parameters:
reason
- The passed in message detailing the errorcause
- Optional cause, null would indicate the error is unknown
-