[corlib] Parse datetime string using culture calendar. Fixes #18052
[mono.git] / mcs / class / corlib / System / TypeUnloadedException.cs
index 10929e3fe6870675181a7cad831757ddf0a01514..7caaf1c908dea85f86fa5109e1956b70ac0d23a9 100644 (file)
@@ -2,42 +2,62 @@
 // System.TypeUnloadedException.cs
 //
 // Author:
-//     Duncan Mak (duncan@ximian.com)
+//   Duncan Mak (duncan@ximian.com)
 //
 // 2002 (C) Ximian, Inc. http://www.ximian.com
 //
 
-using System;
-using System.Globalization;
+//
+// Copyright (C) 2004 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
+// "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.
+//
+
 using System.Runtime.Serialization;
+using System.Runtime.InteropServices;
 
 namespace System
 {
        [Serializable]
+       [ComVisible (true)]
        public class TypeUnloadedException : SystemException
        {
                // Constructors
                public TypeUnloadedException ()
                        : base (Locale.GetText ("Cannot access an unloaded class."))
-                       {
-                       }
-               
+               {
+               }
+
                public TypeUnloadedException (string message)
                        : base (message)
-                       {
-                       }
-               
-               protected TypeUnloadedException (SerializationInfo info,
-                                             StreamingContext context)
+               {
+               }
+
+               protected TypeUnloadedException (SerializationInfo info, StreamingContext context)
                        : base (info, context)
-                       {
-                       }
-               
+               {
+               }
+
                public TypeUnloadedException (string message, Exception innerException)
                        :base (message, innerException)
-                       {
-                       }
-               
+               {
+               }
        }
 }
-