using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Runtime.Remoting
{
/// The exception that is thrown when something has gone wrong during remoting.
// Token: 0x020004CB RID: 1227
[Token(Token = "0x20004CB")]
[ComVisible(true)]
[Serializable]
public class RemotingException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x0600295C RID: 10588 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600295C")]
[Address(RVA = "0x8A3370", Offset = "0x8A2370", VA = "0x1808A3370")]
public RemotingException()
{
}
/// Initializes a new instance of the class with a specified message.
/// The error message that explains why the exception occurred.
// Token: 0x0600295D RID: 10589 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600295D")]
[Address(RVA = "0xD1FC10", Offset = "0xD1EC10", VA = "0x180D1FC10")]
public RemotingException(string 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 .
// Token: 0x0600295E RID: 10590 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600295E")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected RemotingException(SerializationInfo info, StreamingContext 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 , the current exception is raised in a block that handles the inner exception.
// Token: 0x0600295F RID: 10591 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600295F")]
[Address(RVA = "0x767A00", Offset = "0x766A00", VA = "0x180767A00")]
public RemotingException(string message, Exception InnerException)
{
}
}
}