Skip to content

Commit

Permalink
Include column name in errors for InputColumn
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed Dec 22, 2023
1 parent 01b6cf4 commit 256324a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/server/deephaven/column.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __post_init__(self):
else:
self.j_column = _JColumn.of(self.j_column_header, dtypes.array(self.data_type, self.input_data))
except Exception as e:
raise DHError(e, "failed to create an InputColumn.") from e
raise DHError(e, f"failed to create an InputColumn ({self.name}).") from e


def bool_col(name: str, data: Sequence) -> InputColumn:
Expand Down

0 comments on commit 256324a

Please sign in to comment.