diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-11-09 15:07:22 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-11-09 15:07:22 +0000 |
commit | aaf01c6aa0aac4d8ac6c32eea9e221f9f5d4930d (patch) | |
tree | 1980eff298c3bd35f71f67421f6d0bda4ce634ec /cpp/src/Ice/Exception.cpp | |
parent | Fixes for relication test failure on Solaris (diff) | |
download | ice-aaf01c6aa0aac4d8ac6c32eea9e221f9f5d4930d.tar.bz2 ice-aaf01c6aa0aac4d8ac6c32eea9e221f9f5d4930d.tar.xz ice-aaf01c6aa0aac4d8ac6c32eea9e221f9f5d4930d.zip |
Derive from std::exception
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r-- | cpp/src/Ice/Exception.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp index b090f88b013..74826bc0cea 100644 --- a/cpp/src/Ice/Exception.cpp +++ b/cpp/src/Ice/Exception.cpp @@ -29,6 +29,10 @@ Ice::LocalException::LocalException(const char* file, int line) : { } +Ice::LocalException::~LocalException() throw() +{ +} + #if defined(__SUNPRO_CC) ostream& Ice::operator<<(ostream& out, const Ice::UserException& ex) |