From db6e14c234665e6591cc2fc76acec9cab1eff52c Mon Sep 17 00:00:00 2001 From: jbevain Date: Fri, 4 Jun 2010 14:03:06 +0000 Subject: [PATCH] 2010-06-04 Jb Evain * Exception.cs: add stub for SerializeObjectState. git-svn-id: svn+ssh://mono-cvs.ximian.com/source/trunk/mcs@158471 e3ebcda4-bce8-0310-ba0a-eca2169e7518 --- class/corlib/System/ChangeLog | 4 ++++ class/corlib/System/Exception.cs | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/class/corlib/System/ChangeLog b/class/corlib/System/ChangeLog index 0efe18cb9e..c5eadf1544 100644 --- a/class/corlib/System/ChangeLog +++ b/class/corlib/System/ChangeLog @@ -1,3 +1,7 @@ +2010-06-04 Jb Evain + + * Exception.cs: add stub for SerializeObjectState. + 2010-06-03 Jb Evain * AppDomain.cs: add net_4_0's PermissionSet property. diff --git a/class/corlib/System/Exception.cs b/class/corlib/System/Exception.cs index b4a2f1ee66..01a2a5b134 100644 --- a/class/corlib/System/Exception.cs +++ b/class/corlib/System/Exception.cs @@ -64,6 +64,15 @@ namespace System #endregion #pragma warning restore 169, 649 +#if NET_4_0 + protected event EventHandler SerializeObjectState { + [MonoTODO] + add { throw new NotImplementedException (); } + [MonoTODO] + remove { throw new NotImplementedException (); } + } +#endif + public Exception () { } -- 2.11.4.GIT