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