using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Reflection { /// The exception that is thrown by methods invoked through reflection. This class cannot be inherited. // Token: 0x0200023A RID: 570 [Token(Token = "0x200023A")] [ComVisible(true)] [Serializable] public sealed class TargetInvocationException : ApplicationException { // Token: 0x06001473 RID: 5235 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001473")] [Address(RVA = "0x30CCAA0", Offset = "0x30CBAA0", VA = "0x1830CCAA0")] private TargetInvocationException() { } /// Initializes a new instance of the class with a reference to the inner exception that is the cause of this exception. /// The exception that is the cause of the current exception. If the parameter is not , the current exception is raised in a block that handles the inner exception. // Token: 0x06001474 RID: 5236 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001474")] [Address(RVA = "0x30CCB00", Offset = "0x30CBB00", VA = "0x1830CCB00")] public TargetInvocationException(Exception inner) { } /// Initializes a new instance of the class with a specified error message and a reference to the inner exception that is the cause of this exception. /// The error message that explains the reason for the exception. /// The exception that is the cause of the current exception. If the parameter is not , the current exception is raised in a block that handles the inner exception. // Token: 0x06001475 RID: 5237 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001475")] [Address(RVA = "0x30CCB70", Offset = "0x30CBB70", VA = "0x1830CCB70")] public TargetInvocationException(string message, Exception inner) { } // Token: 0x06001476 RID: 5238 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001476")] [Address(RVA = "0xF853E0", Offset = "0xF843E0", VA = "0x180F853E0")] internal TargetInvocationException(SerializationInfo info, StreamingContext context) { } } }