summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Exception.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-09-11 21:12:38 +0000
committerMark Spruiell <mes@zeroc.com>2003-09-11 21:12:38 +0000
commitcbd7000724b0474b622ce8c7b47819630f2ab818 (patch)
tree6b6897c8cb85ce9b6f260df4d261d1b0341fa402 /cpp/src/Ice/Exception.cpp
parentanother minor fix (diff)
downloadice-cbd7000724b0474b622ce8c7b47819630f2ab818.tar.bz2
ice-cbd7000724b0474b622ce8c7b47819630f2ab818.tar.xz
ice-cbd7000724b0474b622ce8c7b47819630f2ab818.zip
- Removed dependency on Xerces.
- Removed generic stream interface Ice::Stream and ice_marshal functions. - Removed XML stream implementation and related test. - Removed XML transformer and related test. - Removed slice2xsd. - Added C++ wrapper for the expat XML parser in IceXML::Parser. - Removed XML encoding from Freeze.
Diffstat (limited to 'cpp/src/Ice/Exception.cpp')
-rw-r--r--cpp/src/Ice/Exception.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/cpp/src/Ice/Exception.cpp b/cpp/src/Ice/Exception.cpp
index ab4f2616e64..632b2f59894 100644
--- a/cpp/src/Ice/Exception.cpp
+++ b/cpp/src/Ice/Exception.cpp
@@ -15,7 +15,6 @@
#include <Ice/Exception.h>
#include <Ice/LocalException.h>
#include <Ice/Network.h>
-#include <Ice/Stream.h>
#include <Ice/IdentityUtil.h>
#include <Ice/StringUtil.h>
#include <Ice/Plugin.h>
@@ -31,14 +30,6 @@ Ice::UserException::__usesClasses() const
return false;
}
-void
-Ice::UserException::ice_marshal(const ::std::string& __name, const ::Ice::StreamPtr& __os)
-{
- __os->startWriteException(__name);
- __marshal(__os);
- __os->endWriteException();
-}
-
Ice::LocalException::LocalException(const char* file, int line) :
Exception(file, line)
{