using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Reflection { /// Represents the exception that is thrown when an attempt is made to invoke an invalid target. // Token: 0x02000232 RID: 562 [Token(Token = "0x2000232")] [ComVisible(true)] [Serializable] public class TargetException : ApplicationException { /// Initializes a new instance of the class with an empty message and the root cause of the exception. // Token: 0x06001432 RID: 5170 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001432")] [Address(RVA = "0x29601F0", Offset = "0x295EFF0", VA = "0x1829601F0")] public TargetException() { } /// Initializes a new instance of the class with the given message and the root cause exception. /// A describing the reason why the exception occurred. // Token: 0x06001433 RID: 5171 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001433")] [Address(RVA = "0x2960220", Offset = "0x295F020", VA = "0x182960220")] public TargetException(string message) { } /// Initializes a new instance of the class with the specified serialization and context information. /// The data for serializing or deserializing the object. /// The source of and destination for the object. // 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) { } } }