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: 0x02000543 RID: 1347
[Token(Token = "0x2000543")]
[Serializable]
public sealed class RuntimeWrappedException : Exception
{
// Token: 0x06002A35 RID: 10805 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A35")]
[Address(RVA = "0x295FB20", Offset = "0x295E920", VA = "0x18295FB20")]
private RuntimeWrappedException(object thrownObject)
{
}
/// Gets the object that was wrapped by the object.
/// The object that was wrapped by the object.
// Token: 0x1700063E RID: 1598
// (get) Token: 0x06002A36 RID: 10806 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x1700063E")]
public object WrappedException
{
[Token(Token = "0x6002A36")]
[Address(RVA = "0x44EC80", Offset = "0x44DA80", VA = "0x18044EC80")]
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: 0x06002A37 RID: 10807 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A37")]
[Address(RVA = "0x295FA30", Offset = "0x295E830", VA = "0x18295FA30", Slot = "10")]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x06002A38 RID: 10808 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A38")]
[Address(RVA = "0x295FBF0", Offset = "0x295E9F0", VA = "0x18295FBF0")]
internal RuntimeWrappedException(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x06002A39 RID: 10809 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A39")]
[Address(RVA = "0x295FBC0", Offset = "0x295E9C0", VA = "0x18295FBC0")]
internal RuntimeWrappedException()
{
}
// Token: 0x04001881 RID: 6273
[FieldOffset(Offset = "0x88")]
[Token(Token = "0x4001881")]
private object m_wrappedException;
}
}