From e2f9a1445dd07b4cd1a052717e37790e2db088c3 Mon Sep 17 00:00:00 2001 From: Micah Kornfield Date: Mon, 24 Jun 2019 20:39:50 -0700 Subject: [PATCH] change messages --- cpp/src/arrow/python/common.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/arrow/python/common.cc b/cpp/src/arrow/python/common.cc index 8125da2291021..9b118e42d6b85 100644 --- a/cpp/src/arrow/python/common.cc +++ b/cpp/src/arrow/python/common.cc @@ -59,7 +59,7 @@ class PythonErrorDetail : public StatusDetail { public: PythonErrorDetail() = default; const char* type_id() const override { return kErrorDetailTypeId; } - std::string ToString() const override { return "Python Error."; } + std::string ToString() const override { return "Uncaught Python."; } }; } // namespace