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.Threading/ThreadStateException.cs')
-rwxr-xr-xmcs/class/corlib/System.Threading/ThreadStateException.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/mcs/class/corlib/System.Threading/ThreadStateException.cs b/mcs/class/corlib/System.Threading/ThreadStateException.cs
deleted file mode 100755
index c359fe011b1..00000000000
--- a/mcs/class/corlib/System.Threading/ThreadStateException.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// System.Threading.ThreadStateException.cs
-//
-// Author:
-// Dick Porter (dick@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-using System.Runtime.Serialization;
-
-namespace System.Threading
-{
- [Serializable]
- public class ThreadStateException : SystemException
- {
- public ThreadStateException()
- : base ("Thread State Error") {
- }
-
- public ThreadStateException(string message)
- : base (message) {
- }
-
- protected ThreadStateException(SerializationInfo info, StreamingContext context)
- : base (info, context) {
- }
-
- public ThreadStateException(string message, Exception innerException)
- : base (message, innerException) {
- }
- }
-}