Class RowUpdateException

All Implemented Interfaces:
Serializable

public class RowUpdateException 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

    • RowUpdateException

      public RowUpdateException()
      Default Constructor
    • RowUpdateException

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

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

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