* Moved classes which was belonging to the System assembly.
authorMartin Willemoes Hansen <mwh@mono-cvs.ximian.com>
Thu, 27 Mar 2003 20:31:45 +0000 (20:31 -0000)
committerMartin Willemoes Hansen <mwh@mono-cvs.ximian.com>
Thu, 27 Mar 2003 20:31:45 +0000 (20:31 -0000)
        * Added CodeDomSerializerException.cs stub

svn path=/trunk/mcs/; revision=12874

mcs/class/System.Design/System.ComponentModel.Design.Serialization/Changelog
mcs/class/System.Design/System.ComponentModel.Design.Serialization/CodeDomSerializerException.cs [new file with mode: 0644]

index 89a1606e4a8e5829be0f333214b734b91981ca63..6d56a0fe744ba8dbacee8f71e4ff172fca1af26d 100644 (file)
@@ -1,5 +1,6 @@
 2003-03-27  Martin Willemoes Hansen <mwh@sysrq.dk>
        * Moved classes which was belonging to the System assembly.
+       * Added CodeDomSerializerException.cs stub
 
 2002-12-06  Gaurav Vaish <gvaish_mono@lycos.com>
 
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 (file)
index 0000000..cae1e7c
--- /dev/null
@@ -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()
+               {
+               }
+       }
+}