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