From 781b07f5f0c07633510b645c0ba8aa7b43f80a59 Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Mon, 26 Nov 2007 14:53:59 -0500 Subject: Fixed SystemException to no longer derive from LocalException --- cpp/src/Ice/Exception.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/Ice') diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index c147357e62c..c930fca7b7e 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -53,7 +53,7 @@ Ice::LocalException::~LocalException() throw() } Ice::SystemException::SystemException(const char* file, int line) : - LocalException(file, line) + Exception(file, line) { } -- cgit v1.2.3