Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System/ContextMarshalException.cs')
-rw-r--r--mcs/class/corlib/System/ContextMarshalException.cs42
1 files changed, 0 insertions, 42 deletions
diff --git a/mcs/class/corlib/System/ContextMarshalException.cs b/mcs/class/corlib/System/ContextMarshalException.cs
deleted file mode 100644
index bb058cf2e09..00000000000
--- a/mcs/class/corlib/System/ContextMarshalException.cs
+++ /dev/null
@@ -1,42 +0,0 @@
-//
-// System.ContextMarshalException.cs
-//
-// Author:
-// Duncan Mak (duncan@ximian.com)
-//
-// 2002 (C) Ximian, Inc. http://www.ximian.com
-//
-
-using System;
-using System.Globalization;
-using System.Runtime.Serialization;
-
-namespace System
-{
- [Serializable]
- public class ContextMarshalException : SystemException
- {
- // Constructors
- public ContextMarshalException ()
- : base (Locale.GetText ("Attempt to marshal and object across a context failed."))
- {
- }
-
- public ContextMarshalException (string message)
- : base (message)
- {
- }
-
- protected ContextMarshalException (SerializationInfo info,
- StreamingContext context)
- : base (info, context)
- {
- }
-
- public ContextMarshalException (string message, Exception innerException)
- :base (message, innerException)
- {
- }
-
- }
-}