2002-08-21 Dietmar Maurer <dietmar@ximian.com>
[mono.git] / mcs / class / corlib / System / UnhandledExceptionEventArgs.cs
index d8226e92f5a64a163097974f001c99e0b5bd1d6e..81e318eeec43dd5be9e888a8e7c2c9a5dd5cadb4 100755 (executable)
@@ -12,10 +12,11 @@ using System.Reflection;
 
 namespace System 
 {
+       [Serializable]
        public class UnhandledExceptionEventArgs: EventArgs
        {
-               protected object exception;
-               protected bool m_isTerminating;
+               private object exception;
+               private bool m_isTerminating;
 
                public UnhandledExceptionEventArgs(object exception, bool isTerminating)
                {