summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Exception.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-11-26 14:53:59 -0500
committerBernard Normier <bernard@zeroc.com>2007-11-26 14:53:59 -0500
commit781b07f5f0c07633510b645c0ba8aa7b43f80a59 (patch)
tree3d6cc9e07abd6fd696e018a08268b6b59a7ad8e7 /cpp/src/Ice/Exception.cpp
parentfix slice2cs definition (diff)
downloadice-781b07f5f0c07633510b645c0ba8aa7b43f80a59.tar.bz2
ice-781b07f5f0c07633510b645c0ba8aa7b43f80a59.tar.xz
ice-781b07f5f0c07633510b645c0ba8aa7b43f80a59.zip
Fixed SystemException to no longer derive from LocalException
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r--cpp/src/Ice/Exception.cpp2
1 files changed, 1 insertions, 1 deletions
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)
{
}