| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Runtime.Remoting.RemotingException.cs
- //
- // AUthor: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright. Ximian, Inc.
- //
- using System;
- using System.Runtime.Serialization;
- namespace System.Runtime.Remoting {
- [Serializable]
- public class RemotingException : SystemException
- {
- public RemotingException ()
- : base ()
- {
- }
- public RemotingException (string message)
- : base (message)
- {
- }
- protected RemotingException (SerializationInfo info, StreamingContext context)
- : base (info, context)
- {
- }
- public RemotingException (string message, Exception ex)
- : base (message, ex)
- {
- }
- }
- }
|