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/Runtime/Remoting Remo


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/Remoting RemotingException.cs,1.3,1.4
Date: Mon, 07 Apr 2003 00:22:54 -0400

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

Modified Files:
        RemotingException.cs 
Log Message:


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


Index: RemotingException.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/RemotingException.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** RemotingException.cs        5 Apr 2003 06:58:12 -0000       1.3
--- RemotingException.cs        7 Apr 2003 04:22:52 -0000       1.4
***************
*** 3,7 ****
   *            "System.Runtime.Remoting.RemotingException" class.
   *
!  * Copyright (C) 2001  Southern Storm Software, Pty Ltd.
   *
   * This program is free software; you can redistribute it and/or modify
--- 3,7 ----
   *            "System.Runtime.Remoting.RemotingException" class.
   *
!  * Copyright (C) 2001, 2003  Southern Storm Software, Pty Ltd.
   *
   * This program is free software; you can redistribute it and/or modify
***************
*** 26,29 ****
--- 26,30 ----
  
  using System;
+ using System.Runtime.Serialization;
  
  public class RemotingException : SystemException
***************
*** 37,40 ****
--- 38,44 ----
        public RemotingException(String msg, Exception inner)
                : base(msg, inner) {}
+       protected RemotingException(SerializationInfo info,
+                                                               
StreamingContext context)
+               : base(info, context) {}
  
        // Get the default message to use for this exception type.





reply via email to

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