From b06aa1831f3ccfa79ea7abee683aaafa6ee1e047 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Mon, 8 Jul 2019 10:56:43 -0700 Subject: [PATCH] minor disambiguate error messages --- src/remoteClient/clientContextImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remoteClient/clientContextImpl.cpp b/src/remoteClient/clientContextImpl.cpp index 45d0b70..13f2f5a 100644 --- a/src/remoteClient/clientContextImpl.cpp +++ b/src/remoteClient/clientContextImpl.cpp @@ -3999,7 +3999,7 @@ public: Lock lock(m_contextMutex); if (m_contextState == CONTEXT_DESTROYED) - throw std::runtime_error("Context destroyed."); + throw std::runtime_error("Context destroyed!"); else if (m_contextState == CONTEXT_INITIALIZED) throw std::runtime_error("Context already initialized.");