blob: 342349c4b1dde9f686ce4721e7ed1ee2e6fc0726 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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";
}
|