Skip to content

Commit

Permalink
error message update
Browse files Browse the repository at this point in the history
Signed-off-by: Firestarman <[email protected]>
  • Loading branch information
firestarman committed Mar 19, 2021
1 parent 1f21c3a commit 420f524
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions java/src/main/native/src/TableJni.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,7 @@ class native_arrow_ipc_writer_handle final {

std::string& get_column_name(const size_t idx) {
if (idx < 0 || idx >= column_names.size()) {
throw cudf::jni::jni_exception(
"Missing column names for struct columns or nested struct columns");
throw cudf::jni::jni_exception("Missing names for columns or nested columns");
}
return column_names[idx];
}
Expand Down

0 comments on commit 420f524

Please sign in to comment.