using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
namespace System.Runtime.Remoting
{
/// The exception that is thrown when something has gone wrong during remoting.
// Token: 0x0200044A RID: 1098
[ComVisible(true)]
[Serializable]
public class RemotingException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x06002A47 RID: 10823 RVA: 0x00088C38 File Offset: 0x00086E38
public RemotingException()
{
}
/// Initializes a new instance of the class with a specified message.
/// The error message that explains why the exception occurred.
// Token: 0x06002A48 RID: 10824 RVA: 0x00088C40 File Offset: 0x00086E40
public RemotingException(string message)
: base(message)
{
}
/// Initializes a new instance of the class from serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination of the exception.
/// The parameter is null.
// Token: 0x06002A49 RID: 10825 RVA: 0x00088C4C File Offset: 0x00086E4C
protected RemotingException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
/// 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 why the exception occurred.
/// 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: 0x06002A4A RID: 10826 RVA: 0x00088C58 File Offset: 0x00086E58
public RemotingException(string message, Exception InnerException)
: base(message, InnerException)
{
}
}
}