2002-06-27 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / class / corlib / System / DivideByZeroException.cs
index e9a162b255e0968146e4ee3574b3a9f1193f270f..74582bb361dd5966efbca86ed188f2449c474738 100644 (file)
@@ -8,6 +8,8 @@
 //
 
 using System.Globalization;
+using System.Runtime.Serialization;
+
 namespace System {
 
        [Serializable]
@@ -27,5 +29,10 @@ namespace System {
                        : base (message, inner)
                {
                }
+
+               protected DivideByZeroException (SerializationInfo info, StreamingContext context)
+                       : base (info, context)
+               {
+               }
        }
 }