Class RowProcessingException

All Implemented Interfaces:
Serializable

public class RowProcessingException extends DeephavenException
The Checked Exception thrown when error occurs while processing NonSourceColumn data.

Non Source Column can either be Constant Columns or Single value Partition columns or Custom Setter columns.

See Also:
  • Constructor Details

    • RowProcessingException

      public RowProcessingException()
      Default Constructor
    • RowProcessingException

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

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

      public RowProcessingException(@NotNull String reason, @Nullable Throwable cause)
      Constructor that builds a RowProcessingException 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