summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/retry/SystemFailure.cs
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2018-07-20 19:19:30 +0200
committerJose <jose@zeroc.com>2018-07-20 19:19:30 +0200
commitf831849a119aa592d207fd38428517b414c2b39d (patch)
tree88c4d1c69072ad45eda621079f0d1d8b89a1fd8e /csharp/test/Ice/retry/SystemFailure.cs
parentUpdate Travis CI build to use ubuntu-18.04 (diff)
downloadice-f831849a119aa592d207fd38428517b414c2b39d.tar.bz2
ice-f831849a119aa592d207fd38428517b414c2b39d.tar.xz
ice-f831849a119aa592d207fd38428517b414c2b39d.zip
Xamarin testsuite
Diffstat (limited to 'csharp/test/Ice/retry/SystemFailure.cs')
-rw-r--r--csharp/test/Ice/retry/SystemFailure.cs18
1 files changed, 12 insertions, 6 deletions
diff --git a/csharp/test/Ice/retry/SystemFailure.cs b/csharp/test/Ice/retry/SystemFailure.cs
index ef372c94250..fb4a3368814 100644
--- a/csharp/test/Ice/retry/SystemFailure.cs
+++ b/csharp/test/Ice/retry/SystemFailure.cs
@@ -7,12 +7,18 @@
//
// **********************************************************************
-[System.Serializable]
-public class SystemFailure : Ice.SystemException
+namespace Ice
{
- public override string
- ice_id()
+ namespace retry
{
- return "::SystemFailure";
+ [System.Serializable]
+ public class SystemFailure : Ice.SystemException
+ {
+ public override string
+ ice_id()
+ {
+ return "::SystemFailure";
+ }
+ }
}
-};
+}