From cd7a5ef408ec2832fbd70b65a2e9746357033bbb Mon Sep 17 00:00:00 2001 From: nds Date: Fri, 19 Feb 2016 11:20:20 +0300 Subject: [PATCH] OperationPrs should not be shown if it is empty. correction of compilation on Linux. --- src/Events/Events_Error.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Events/Events_Error.cpp b/src/Events/Events_Error.cpp index 1016816c3..ce19e7c79 100644 --- a/src/Events/Events_Error.cpp +++ b/src/Events/Events_Error.cpp @@ -44,7 +44,7 @@ void Events_Error::throwException(const std::string& theDescription) { #ifdef THROW_EMPTY_AIS_EXCEPTION try { - throw std::invalid_argument(theDescription); + throw; } catch (...) { Events_Error::send( -- 2.39.2