blob: 3ff43e8966dac20501188e20222e7915a3c18251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <IceBox/IceBox.h>
using namespace std;
void
IceBox::FailureException::ice_print(ostream& out) const
{
Exception::ice_print(out);
out << ":\nservice failure exception: " << reason;
}
|