using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System.Runtime.Remoting
{
/// The exception that is thrown when the server or the client cannot be reached for a previously specified period of time.
// Token: 0x0200044D RID: 1101
[ComVisible(true)]
[Serializable]
public class RemotingTimeoutException : RemotingException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x06002A88 RID: 10888 RVA: 0x00089FAC File Offset: 0x000881AC
public RemotingTimeoutException()
{
}
/// Initializes a new instance of class with a specified message.
/// The message that indicates the reason why the exception occurred.
// Token: 0x06002A89 RID: 10889 RVA: 0x00089FB4 File Offset: 0x000881B4
public RemotingTimeoutException(string message)
: base(message)
{
}
/// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// The error message that explains the reason for the exception.
/// The exception that is the cause of the current exception. If the parameter is not null, the current exception is raised in a catch block that handles the inner exception.
// Token: 0x06002A8A RID: 10890 RVA: 0x00089FC0 File Offset: 0x000881C0
public RemotingTimeoutException(string message, Exception InnerException)
: base(message, InnerException)
{
}
// Token: 0x06002A8B RID: 10891 RVA: 0x00089FCC File Offset: 0x000881CC
internal RemotingTimeoutException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}