using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Reflection
{
/// The exception that is thrown by methods invoked through reflection. This class cannot be inherited.
// Token: 0x02000233 RID: 563
[Token(Token = "0x2000233")]
[ComVisible(true)]
[Serializable]
public sealed class TargetInvocationException : ApplicationException
{
// Token: 0x06001435 RID: 5173 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001435")]
[Address(RVA = "0x2960250", Offset = "0x295F050", VA = "0x182960250")]
private TargetInvocationException()
{
}
/// Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception.
/// 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: 0x06001436 RID: 5174 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001436")]
[Address(RVA = "0x29602B0", Offset = "0x295F0B0", VA = "0x1829602B0")]
public TargetInvocationException(Exception inner)
{
}
/// 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 the reason for the exception.
/// 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: 0x06001437 RID: 5175 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001437")]
[Address(RVA = "0x2960320", Offset = "0x295F120", VA = "0x182960320")]
public TargetInvocationException(string message, Exception inner)
{
}
// Token: 0x06001438 RID: 5176 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001438")]
[Address(RVA = "0x700790", Offset = "0x6FF590", VA = "0x180700790")]
internal TargetInvocationException(SerializationInfo info, StreamingContext context)
{
}
}
}