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.Runtime.InteropServices/ExternalException.cs')
-rwxr-xr-xmcs/class/corlib/System.Runtime.InteropServices/ExternalException.cs50
1 files changed, 0 insertions, 50 deletions
diff --git a/mcs/class/corlib/System.Runtime.InteropServices/ExternalException.cs b/mcs/class/corlib/System.Runtime.InteropServices/ExternalException.cs
deleted file mode 100755
index 014074cef21..00000000000
--- a/mcs/class/corlib/System.Runtime.InteropServices/ExternalException.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-//
-// System.Runtime.InteropServices.ExternalException.cs
-//
-// Author:
-// Miguel De Icaza (miguel@ximian.com)
-//
-// (C) 2001 Ximian, Inc. http://www.ximian.com
-//
-
-using System.Runtime.Serialization;
-using System.Globalization;
-
-namespace System.Runtime.InteropServices {
- [Serializable]
- public class ExternalException : SystemException {
- private int error_code;
-
- // Constructors
- public ExternalException ()
- : base (Locale.GetText ("External exception"))
- {
- }
-
- public ExternalException (string message)
- : base (message)
- {
- }
-
- protected ExternalException(SerializationInfo info, StreamingContext context)
- : base (info, context) {
- }
-
- public ExternalException (string message, Exception inner)
- : base (message, inner)
- {
- }
-
- public ExternalException (string message, int errorCode)
- : base (message)
- {
- error_code = errorCode;
- }
-
- public virtual int ErrorCode {
- get {
- return error_code;
- }
- }
- }
-}