This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,48 @@
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: 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()
{
}
/// <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: 0x06001436 RID: 5174 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001436")]
[Address(RVA = "0x29602B0", Offset = "0x295F0B0", VA = "0x1829602B0")]
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: 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)
{
}
}
}