X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Runtime.Remoting%2FRemotingTimeoutException.cs;h=8c2fb8285402c56a25af45e027faf42424b61a57;hb=861811b3fb77da8f6ee2484139536cd2c09162ec;hp=17b8d83d55a45fe84fa6e71c11c9c42850605b44;hpb=4eb352bcb3ef7a71dc9ab62c5cd2d5e7598619f7;p=mono.git diff --git a/mcs/class/corlib/System.Runtime.Remoting/RemotingTimeoutException.cs b/mcs/class/corlib/System.Runtime.Remoting/RemotingTimeoutException.cs index 17b8d83d55a..8c2fb828540 100644 --- a/mcs/class/corlib/System.Runtime.Remoting/RemotingTimeoutException.cs +++ b/mcs/class/corlib/System.Runtime.Remoting/RemotingTimeoutException.cs @@ -1,7 +1,7 @@ // // System.Runtime.Remoting.RemotingTimeoutException.cs // -// AUthor: Duncan Mak (duncan@ximian.com) +// Author: Duncan Mak (duncan@ximian.com) // // 2002 (C) Copyright. Ximian, Inc. // @@ -35,6 +35,7 @@ using System.Runtime.Serialization; namespace System.Runtime.Remoting { [Serializable] + [System.Runtime.InteropServices.ComVisible (true)] public class RemotingTimeoutException : RemotingException { public RemotingTimeoutException () @@ -47,8 +48,8 @@ namespace System.Runtime.Remoting { { } - public RemotingTimeoutException (string message, Exception ex) - : base (message, ex) + public RemotingTimeoutException (string message, Exception InnerException) + : base (message, InnerException) { }