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