Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

49 lines
2.4 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Reflection
{
/// <summary>The exception that is thrown by methods invoked through reflection. This class cannot be inherited.</summary>
// Token: 0x0200023A RID: 570
[Token(Token = "0x200023A")]
[ComVisible(true)]
[Serializable]
public sealed class TargetInvocationException : ApplicationException
{
// Token: 0x06001473 RID: 5235 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001473")]
[Address(RVA = "0x30CCAA0", Offset = "0x30CBAA0", VA = "0x1830CCAA0")]
private TargetInvocationException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.TargetInvocationException" /> class with a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// Token: 0x06001474 RID: 5236 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001474")]
[Address(RVA = "0x30CCB00", Offset = "0x30CBB00", VA = "0x1830CCB00")]
public TargetInvocationException(Exception inner)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.TargetInvocationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// Token: 0x06001475 RID: 5237 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001475")]
[Address(RVA = "0x30CCB70", Offset = "0x30CBB70", VA = "0x1830CCB70")]
public TargetInvocationException(string message, Exception inner)
{
}
// Token: 0x06001476 RID: 5238 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001476")]
[Address(RVA = "0xF853E0", Offset = "0xF843E0", VA = "0x180F853E0")]
internal TargetInvocationException(SerializationInfo info, StreamingContext context)
{
}
}
}