diff options
Diffstat (limited to 'cpp/src/IceBox/Exception.cpp')
-rw-r--r-- | cpp/src/IceBox/Exception.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cpp/src/IceBox/Exception.cpp b/cpp/src/IceBox/Exception.cpp new file mode 100644 index 00000000000..342349c4b1d --- /dev/null +++ b/cpp/src/IceBox/Exception.cpp @@ -0,0 +1,23 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#include <IceBox/IceBox.h> +#include <Ice/Stream.h> + +using namespace std; +using namespace Ice; +using namespace IceInternal; + +void +IceBox::ServiceFailureException::ice_print(ostream& out) const +{ + Exception::ice_print(out); + out << ":\nservice failure exception"; +} |