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: 0x02000239 RID: 569
|
|
[Token(Token = "0x2000239")]
|
|
[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: 0x06001470 RID: 5232 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001470")]
|
|
[Address(RVA = "0x30CCA40", Offset = "0x30CBA40", VA = "0x1830CCA40")]
|
|
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: 0x06001471 RID: 5233 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001471")]
|
|
[Address(RVA = "0x30CCA70", Offset = "0x30CBA70", VA = "0x1830CCA70")]
|
|
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: 0x06001472 RID: 5234 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6001472")]
|
|
[Address(RVA = "0xF853E0", Offset = "0xF843E0", VA = "0x180F853E0")]
|
|
protected TargetException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|