dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Resources MissingManif


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Resources MissingManifestResourceException.cs,1.5,1.6
Date: Mon, 07 Apr 2003 00:22:54 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Resources
In directory subversions:/tmp/cvs-serv26075/runtime/System/Resources

Modified Files:
        MissingManifestResourceException.cs 
Log Message:


Add serialization support to all of the exception classes in "runtime".


Index: MissingManifestResourceException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Resources/MissingManifestResourceException.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** MissingManifestResourceException.cs 5 Apr 2003 06:58:12 -0000       1.5
--- MissingManifestResourceException.cs 7 Apr 2003 04:22:51 -0000       1.6
***************
*** 3,7 ****
   *            "System.Resources.MissingManifestResourceException" class.
   *
!  * Copyright (C) 2001  Southern Storm Software, Pty Ltd.
   *
   * This program is free software; you can redistribute it and/or modify
--- 3,7 ----
   *            "System.Resources.MissingManifestResourceException" class.
   *
!  * Copyright (C) 2001, 2003  Southern Storm Software, Pty Ltd.
   *
   * This program is free software; you can redistribute it and/or modify
***************
*** 24,27 ****
--- 24,28 ----
  
  using System;
+ using System.Runtime.Serialization;
  
  public class MissingManifestResourceException : Exception
***************
*** 35,38 ****
--- 36,44 ----
        public MissingManifestResourceException(String msg, Exception inner)
                : base(msg, inner) {}
+ #if !ECMA_COMPAT
+       internal MissingManifestResourceException(SerializationInfo info,
+                                                                               
      StreamingContext context)
+               : base(info, context) {}
+ #endif
  
        // Get the default message to use for this exception type.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]