using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Runtime.CompilerServices
{
/// Wraps an exception that does not derive from the class. This class cannot be inherited.
// Token: 0x02000561 RID: 1377
[Token(Token = "0x2000561")]
[Serializable]
public sealed class RuntimeWrappedException : Exception
{
// Token: 0x06002C44 RID: 11332 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002C44")]
[Address(RVA = "0x2CFC540", Offset = "0x2CFB540", VA = "0x182CFC540")]
private RuntimeWrappedException(object thrownObject)
{
}
/// Gets the object that was wrapped by the object.
/// The object that was wrapped by the object.
// Token: 0x170006B6 RID: 1718
// (get) Token: 0x06002C45 RID: 11333 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170006B6")]
public object WrappedException
{
[Token(Token = "0x6002C45")]
[Address(RVA = "0x4C31C0", Offset = "0x4C21C0", VA = "0x1804C31C0")]
get
{
return null;
}
}
/// Sets the object with information about the exception.
/// The object that holds the serialized object data about the exception being thrown.
/// The object that contains contextual information about the source or destination.
/// The parameter is .
// Token: 0x06002C46 RID: 11334 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002C46")]
[Address(RVA = "0x2CFC450", Offset = "0x2CFB450", VA = "0x182CFC450", Slot = "10")]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x06002C47 RID: 11335 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002C47")]
[Address(RVA = "0x2CFC610", Offset = "0x2CFB610", VA = "0x182CFC610")]
internal RuntimeWrappedException(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x06002C48 RID: 11336 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002C48")]
[Address(RVA = "0x2CFC5E0", Offset = "0x2CFB5E0", VA = "0x182CFC5E0")]
internal RuntimeWrappedException()
{
}
// Token: 0x04001944 RID: 6468
[FieldOffset(Offset = "0x88")]
[Token(Token = "0x4001944")]
private object m_wrappedException;
}
}