Add pfx to the mobile profile
[mono.git] / mcs / class / corlib / System.Threading / LockRecursionException.cs
index d70d24c70e4a1ee7f460d7489d6b9066faef61f8..9efb404d5585b76dfa113cf317d83bbc6ae98c45 100644 (file)
@@ -25,7 +25,7 @@
  */
 
 
-#if NET_4_0 || BOOTSTRAP_NET_4_0
+#if NET_4_0 || MOBILE
 
 using System;
 using System.Runtime.Serialization;
@@ -47,13 +47,13 @@ namespace System.Threading
                {
                }
 
-               public LockRecursionException (string message, Exception e
-                       : base (message, e)
+               public LockRecursionException (string message, Exception innerException
+                       : base (message, innerException)
                {
                }
 
-               protected LockRecursionException (SerializationInfo info, StreamingContext sc)
-                        : base (info, sc)
+               protected LockRecursionException (SerializationInfo info, StreamingContext context)
+                        : base (info, context)
                {
                }
        }