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/FormatException.cs')
-rw-r--r--mcs/class/corlib/System/FormatException.cs39
1 files changed, 0 insertions, 39 deletions
diff --git a/mcs/class/corlib/System/FormatException.cs b/mcs/class/corlib/System/FormatException.cs
deleted file mode 100644
index 2140db44359..00000000000
--- a/mcs/class/corlib/System/FormatException.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-//
-// System.FormatException.cs
-//
-// Author:
-// Joe Shaw (joe@ximian.com)
-//
-// (C) 2001 Ximian, Inc. http://www.ximian.com
-//
-
-using System.Globalization;
-using System.Runtime.Serialization;
-
-namespace System {
-
- [Serializable]
- public class FormatException : SystemException {
- // Constructors
- public FormatException ()
- : base (Locale.GetText ("Invalid format"))
- {
- }
-
- public FormatException (string message)
- : base (message)
- {
- }
-
- public FormatException (string message, Exception inner)
- : base (message, inner)
- {
- }
-
- protected FormatException (SerializationInfo info,
- StreamingContext context)
- : base (info, context)
- {
- }
- }
-}