blob: 40dcd3bd941c7a19a587e6bf285a10c40841ba8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
namespace Ice
{
namespace retry
{
[System.Serializable]
public class SystemFailure : Ice.SystemException
{
public override string
ice_id()
{
return "::SystemFailure";
}
}
}
}
|