Merge pull request #3078 from akoeplinger/fix-test-exclude-filename
[mono.git] / mcs / class / corlib / System.Security / VerificationException.cs
index 65eb68fc7117104f311012fafbf0446fd2b919e3..4e527a65a0cf7a1f9e536ff14328132dc77f55ca 100644 (file)
@@ -1,37 +1,11 @@
-//\r
-// System.Security.VerificationException.cs\r
-//\r
-// Author:\r
-//   Nick Drochak(ndrochak@gol.com)\r
-//\r
-// (C) Nick Drochak\r
-//\r
-
 //
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// System.Security.VerificationException.cs
 //
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-// 
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-// 
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-
+// Author:
+//   Nick Drochak(ndrochak@gol.com)
 //
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// (C) Nick Drochak
+// 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
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-\r
-using System.Runtime.Serialization;\r
-using System.Globalization;\r
-\r
-namespace System.Security {\r
-       [Serializable]\r
-       public class VerificationException : SystemException {\r
-       \r
-               // Constructors\r
-               public VerificationException(){}\r
-               public VerificationException(string message) \r
-                       : base (message){}\r
-               protected VerificationException(SerializationInfo info, StreamingContext context) \r
-                       : base (info, context) {}\r
-               public VerificationException(string message, Exception inner) \r
-                       : base (message, inner) {}\r
-       }\r
-}\r
+
+using System.Globalization;
+using System.Runtime.InteropServices;
+using System.Runtime.Serialization;
+
+namespace System.Security {
+
+       [Serializable]
+       [ComVisible (true)]
+       public class VerificationException : SystemException {
+       
+               // Constructors
+               public VerificationException ()
+               {
+               }
+
+               public VerificationException (string message) 
+                       : base (message)
+               {
+               }
+
+               protected VerificationException (SerializationInfo info, StreamingContext context) 
+                       : base (info, context)
+               {
+               }
+
+               public VerificationException (string message, Exception innerException) 
+                       : base (message, innerException)
+               {
+               }
+       }
+}