From c0819f5bcf3d33c7aaca14574246b9db7ad40485 Mon Sep 17 00:00:00 2001 From: Martin Willemoes Hansen Date: Thu, 27 Mar 2003 20:31:45 +0000 Subject: [PATCH] * Moved classes which was belonging to the System assembly. * Added CodeDomSerializerException.cs stub svn path=/trunk/mcs/; revision=12874 --- .../Changelog | 1 + .../CodeDomSerializerException.cs | 66 +++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100644 mcs/class/System.Design/System.ComponentModel.Design.Serialization/CodeDomSerializerException.cs diff --git a/mcs/class/System.Design/System.ComponentModel.Design.Serialization/Changelog b/mcs/class/System.Design/System.ComponentModel.Design.Serialization/Changelog index 89a1606e4a8..6d56a0fe744 100644 --- a/mcs/class/System.Design/System.ComponentModel.Design.Serialization/Changelog +++ b/mcs/class/System.Design/System.ComponentModel.Design.Serialization/Changelog @@ -1,5 +1,6 @@ 2003-03-27 Martin Willemoes Hansen * Moved classes which was belonging to the System assembly. + * Added CodeDomSerializerException.cs stub 2002-12-06 Gaurav Vaish diff --git a/mcs/class/System.Design/System.ComponentModel.Design.Serialization/CodeDomSerializerException.cs b/mcs/class/System.Design/System.ComponentModel.Design.Serialization/CodeDomSerializerException.cs new file mode 100644 index 00000000000..cae1e7cd725 --- /dev/null +++ b/mcs/class/System.Design/System.ComponentModel.Design.Serialization/CodeDomSerializerException.cs @@ -0,0 +1,66 @@ +// +// System.ComponentModel.Design.Serialization.CodeDomSerializerException.cs +// +// Authors: +// Martin Willemoes Hansen (mwh@sysrq.dk) +// +// (C) 2003 Martin Willemoes Hansen +// + +using System.CodeDom; +using System.Runtime.Serialization; + +namespace System.ComponentModel.Design.Serialization +{ + public class CodeDomSerializerException : SystemException + { + [MonoTODO] + public CodeDomSerializerException() + { + } + + [MonoTODO] + public CodeDomSerializerException (Exception ex, + CodeLinePragma code_line_pragma) + { + throw new NotImplementedException(); + } + + [MonoTODO] + protected CodeDomSerializerException (SerializationInfo info, + StreamingContext context) + { + throw new NotImplementedException(); + } + + [MonoTODO] + public CodeDomSerializerException (string str, + CodeLinePragma code_line_pragma) + { + throw new NotImplementedException(); + } + + public CodeLinePragma LinePragma { + [MonoTODO] + get { throw new NotImplementedException(); } + } + + [MonoTODO] + public override void GetObjectData (SerializationInfo info, + StreamingContext context) + { + throw new NotImplementedException(); + } + + [MonoTODO] + public override string ToString() + { + throw new NotImplementedException(); + } + + [MonoTODO] + ~CodeDomSerializerException() + { + } + } +} -- 2.25.1