X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Runtime.Remoting%2FServerException.cs;h=f7748682cc9459eed7634882868e8cfebb7544aa;hb=f567c2e5ebed86f2f50c6f356f39934064ab6653;hp=1fe45cfa041838c75288987229abb0b1c1bbd56f;hpb=64f85a65b023522d3f34e9932e6a843e0ad8fc3b;p=mono.git diff --git a/mcs/class/corlib/System.Runtime.Remoting/ServerException.cs b/mcs/class/corlib/System.Runtime.Remoting/ServerException.cs index 1fe45cfa041..f7748682cc9 100644 --- a/mcs/class/corlib/System.Runtime.Remoting/ServerException.cs +++ b/mcs/class/corlib/System.Runtime.Remoting/ServerException.cs @@ -35,6 +35,7 @@ using System.Runtime.Serialization; namespace System.Runtime.Remoting { [Serializable] + [System.Runtime.InteropServices.ComVisible (true)] public class ServerException : SystemException { public ServerException () @@ -47,8 +48,8 @@ namespace System.Runtime.Remoting { { } - public ServerException (string message, Exception ex) - : base (message, ex) + public ServerException (string message, Exception InnerException) + : base (message, InnerException) { }