ICE 3.4.2
[php5-ice-freebsdport.git] / cpp / test / Ice / slicing / exceptions / ServerPrivate.ice
blob641eb838b7ec70b8bb244f769f05319e68860b4e
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
10 #ifndef SERVERPRIVATE_ICE
11 #define SERVERPRIVATE_ICE
13 #include <Test.ice>
15 module Test
18 exception UnknownDerived extends Base
20     string ud;
23 exception UnknownIntermediate extends Base
25    string ui;
28 exception UnknownMostDerived1 extends KnownIntermediate
30    string umd1;
33 exception UnknownMostDerived2 extends UnknownIntermediate
35    string umd2;
40 #endif