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: 0x020004AF RID: 1199
[Token(Token = "0x20004AF")]
[ComVisible(true)]
[Serializable]
public class RemotingException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x0600274F RID: 10063 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600274F")]
[Address(RVA = "0x2228EB0", Offset = "0x2227CB0", VA = "0x182228EB0")]
public RemotingException()
{
}
/// Initializes a new instance of the class with a specified message.
/// The error message that explains why the exception occurred.
// Token: 0x06002750 RID: 10064 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002750")]
[Address(RVA = "0x25C2B70", Offset = "0x25C1970", VA = "0x1825C2B70")]
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: 0x06002751 RID: 10065 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002751")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
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: 0x06002752 RID: 10066 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002752")]
[Address(RVA = "0x3F60D0", Offset = "0x3F4ED0", VA = "0x1803F60D0")]
public RemotingException(string message, Exception InnerException)
{
}
}
}