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

public class CsvFormatException extends DeephavenException
Thrown primarily when an unsupported format is specified
See Also:
  • Constructor Details

    • CsvFormatException

      public CsvFormatException()
      Default Constructor
    • CsvFormatException

      public CsvFormatException(@NotNull String reason)
      Constructor that supports taking a detailed message describing the error. See Exception(String)
      Parameters:
      reason - A detailed message describing the error.
    • CsvFormatException

      public CsvFormatException(@Nullable Throwable cause)
      Constructor that builds a CsvFormatException using the specified cause. See Exception(Throwable)
      Parameters:
      cause - The passed in cause.
    • CsvFormatException

      public CsvFormatException(@NotNull String reason, @Nullable Throwable cause)
      Constructor that builds a CsvFormatException using the passed in message and optional cause. See Exception(String, Throwable)
      Parameters:
      reason - The passed in message detailing the error
      cause - Optional cause, null would indicate the error is unknown