Merge pull request #3289 from BrzVlad/fix-critical-finalizer
[mono.git] / mcs / class / corlib / System.Security / VerificationException.cs
index 09e7ee5019d11d45a9550da7670aa774a7331e16..4e527a65a0cf7a1f9e536ff14328132dc77f55ca 100644 (file)
@@ -34,9 +34,7 @@ using System.Runtime.Serialization;
 namespace System.Security {
 
        [Serializable]
-#if NET_2_0
        [ComVisible (true)]
-#endif
        public class VerificationException : SystemException {
        
                // Constructors
@@ -54,8 +52,8 @@ namespace System.Security {
                {
                }
 
-               public VerificationException (string message, Exception inner) 
-                       : base (message, inner)
+               public VerificationException (string message, Exception innerException
+                       : base (message, innerException)
                {
                }
        }