diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-11-26 14:53:59 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-11-26 14:53:59 -0500 |
commit | 781b07f5f0c07633510b645c0ba8aa7b43f80a59 (patch) | |
tree | 3d6cc9e07abd6fd696e018a08268b6b59a7ad8e7 /cpp/src/Ice | |
parent | fix slice2cs definition (diff) | |
download | ice-781b07f5f0c07633510b645c0ba8aa7b43f80a59.tar.bz2 ice-781b07f5f0c07633510b645c0ba8aa7b43f80a59.tar.xz ice-781b07f5f0c07633510b645c0ba8aa7b43f80a59.zip |
Fixed SystemException to no longer derive from LocalException
Diffstat (limited to 'cpp/src/Ice')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 2 |
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) { } |