43 lines
1.9 KiB
C#
43 lines
1.9 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Reflection
|
|
{
|
|
/// <summary>Represents the exception that is thrown when an attempt is made to invoke an invalid target.</summary>
|
|
// Token: 0x02000232 RID: 562
|
|
[Token(Token = "0x2000232")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class TargetException : ApplicationException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.TargetException" /> class with an empty message and the root cause of the exception.</summary>
|
|
// Token: 0x06001432 RID: 5170 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001432")]
|
|
[Address(RVA = "0x29601F0", Offset = "0x295EFF0", VA = "0x1829601F0")]
|
|
public TargetException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.TargetException" /> class with the given message and the root cause exception.</summary>
|
|
/// <param name="message">A <see langword="String" /> describing the reason why the exception occurred.</param>
|
|
// Token: 0x06001433 RID: 5171 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001433")]
|
|
[Address(RVA = "0x2960220", Offset = "0x295F020", VA = "0x182960220")]
|
|
public TargetException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Reflection.TargetException" /> class with the specified serialization and context information.</summary>
|
|
/// <param name="info">The data for serializing or deserializing the object.</param>
|
|
/// <param name="context">The source of and destination for the object.</param>
|
|
// Token: 0x06001434 RID: 5172 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001434")]
|
|
[Address(RVA = "0x700790", Offset = "0x6FF590", VA = "0x180700790")]
|
|
protected TargetException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|