From 85786efb125aafa7a681349c902de5247639973d 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 f014cb7da46a3..b954c1fc17f79 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