Switch to compiler-tester
[mono.git] / mcs / class / corlib / System.Security.Cryptography / CryptographicUnexpectedOperationExcpetion.cs
old mode 100755 (executable)
new mode 100644 (file)
index b25bc65..28f445c
@@ -1,14 +1,11 @@
 //
 // System.Security.Cryptography.CryptographicUnexpectedOperationException.cs
 //
-// Author:
-//   Thomas Neidhart (tome@sbox.tugraz.at)
+// Authors:
+//     Thomas Neidhart (tome@sbox.tugraz.at)
+//     Sebastien Pouliot  <sebastien@ximian.com>
 //
-// (C) 2004 Novell (http://www.novell.com)
-//
-
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-using System;
 using System.Globalization;
+using System.Runtime.InteropServices;
 using System.Runtime.Serialization;
 
 namespace System.Security.Cryptography {
 
-[Serializable]
-public class CryptographicUnexpectedOperationException : CryptographicException {
+       [Serializable]
+#if NET_2_0
+       [ComVisible (true)]
+#endif
+       public class CryptographicUnexpectedOperationException : CryptographicException {
 
-       public CryptographicUnexpectedOperationException ()
-               : base (Locale.GetText ("Unexpected error occured during a cryptographic operation."))
-       {
-               // Default to CORSEC_E_CRYPTO_UNEX_OPER (CorError.h)
-               HResult = unchecked ((int)0x80131431);
-       }
+               public CryptographicUnexpectedOperationException ()
+                       : base (Locale.GetText ("Unexpected error occured during a cryptographic operation."))
+               {
+                       // Default to CORSEC_E_CRYPTO_UNEX_OPER (CorError.h)
+                       HResult = unchecked ((int)0x80131431);
+               }
 
-       public CryptographicUnexpectedOperationException (string message)
-               : base (message)
-       {
-               HResult = unchecked ((int)0x80131431);
-       }
+               public CryptographicUnexpectedOperationException (string message)
+                       : base (message)
+               {
+                       HResult = unchecked ((int)0x80131431);
+               }
 
-       public CryptographicUnexpectedOperationException (string message, Exception inner)
-               : base (message, inner)
-       {
-               HResult = unchecked ((int)0x80131431);
-       }
+               public CryptographicUnexpectedOperationException (string message, Exception inner)
+                       : base (message, inner)
+               {
+                       HResult = unchecked ((int)0x80131431);
+               }
 
-       public CryptographicUnexpectedOperationException (string format, string insert)
-               : base (String.Format(format, insert))
-       {
-               HResult = unchecked ((int)0x80131431);
-       }
+               public CryptographicUnexpectedOperationException (string format, string insert)
+                       : base (String.Format(format, insert))
+               {
+                       HResult = unchecked ((int)0x80131431);
+               }
 
-       protected CryptographicUnexpectedOperationException (SerializationInfo info, StreamingContext context)
-               : base (info, context) 
-       {
+               protected CryptographicUnexpectedOperationException (SerializationInfo info, StreamingContext context)
+                       : base (info, context) 
+               {
+               }
        }
 }
-
-}