Wed Sep 11 15:26:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mcs / class / corlib / System / ExecutionEngineException.cs
index db1e2b555c766337a7a75ce8eb880210cdc7aca6..f005ecb70f04f0af13c5a9fe959e796af1608acf 100644 (file)
@@ -7,12 +7,14 @@
 // (C) 2001 Ximian, Inc.  http://www.ximian.com
 //
 
+using System.Globalization;
 namespace System {
 
+       [Serializable]
        public sealed class ExecutionEngineException : SystemException {
                // Constructors
                public ExecutionEngineException ()
-                       : base ("Internal error occurred") // Haha. Nice.
+                       : base (Locale.GetText ("Internal error occurred")) // Haha. Nice.
                {
                }
 
@@ -26,4 +28,4 @@ namespace System {
                {
                }
        }
-}
\ No newline at end of file
+}