X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Security.Cryptography%2FCryptographicUnexpectedOperationExcpetion.cs;h=28f445ce4b182ce315a50665b76f4bd633d57cf3;hb=b0eff411fcc55fa6a7bbc5ee97bb592fe3204309;hp=b25bc65d37bef5e0e88b5cc0cbf8e6ef04915589;hpb=81b4185368fe9a18a67b9fc4b0d7cf1ee6dd58dc;p=mono.git diff --git a/mcs/class/corlib/System.Security.Cryptography/CryptographicUnexpectedOperationExcpetion.cs b/mcs/class/corlib/System.Security.Cryptography/CryptographicUnexpectedOperationExcpetion.cs old mode 100755 new mode 100644 index b25bc65d37b..28f445ce4b1 --- a/mcs/class/corlib/System.Security.Cryptography/CryptographicUnexpectedOperationExcpetion.cs +++ b/mcs/class/corlib/System.Security.Cryptography/CryptographicUnexpectedOperationExcpetion.cs @@ -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 // -// (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 @@ -30,44 +27,46 @@ // 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) + { + } } } - -}