using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Runtime.InteropServices { /// The base exception type for all COM interop exceptions and structured exception handling (SEH) exceptions. // Token: 0x0200059D RID: 1437 [Token(Token = "0x200059D")] [ComVisible(true)] [Serializable] public class ExternalException : SystemException { /// Initializes a new instance of the class with default properties. // Token: 0x06002CC2 RID: 11458 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002CC2")] [Address(RVA = "0x2CEE010", Offset = "0x2CED010", VA = "0x182CEE010")] public ExternalException() { } /// Initializes a new instance of the class with a specified error message. /// The error message that specifies the reason for the exception. // Token: 0x06002CC3 RID: 11459 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002CC3")] [Address(RVA = "0x2CEE0A0", Offset = "0x2CED0A0", VA = "0x182CEE0A0")] public ExternalException(string message) { } /// 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: 0x06002CC4 RID: 11460 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002CC4")] [Address(RVA = "0x2CEE070", Offset = "0x2CED070", VA = "0x182CEE070")] public ExternalException(string message, Exception inner) { } /// Initializes a new instance of the class with a specified error message and the HRESULT of the error. /// The error message that specifies the reason for the exception. /// The HRESULT of the error. // Token: 0x06002CC5 RID: 11461 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002CC5")] [Address(RVA = "0xCBE600", Offset = "0xCBD600", VA = "0x180CBE600")] public ExternalException(string message, int errorCode) { } /// Initializes a new instance of the class from serialization data. /// The object that holds the serialized object data. /// The contextual information about the source or destination. /// /// is . // Token: 0x06002CC6 RID: 11462 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002CC6")] [Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")] protected ExternalException(SerializationInfo info, StreamingContext context) { } /// Gets the of the error. /// The of the error. // Token: 0x170006C9 RID: 1737 // (get) Token: 0x06002CC7 RID: 11463 RVA: 0x00018E10 File Offset: 0x00017010 [Token(Token = "0x170006C9")] public virtual int ErrorCode { [Token(Token = "0x6002CC7")] [Address(RVA = "0x66A4F0", Offset = "0x6694F0", VA = "0x18066A4F0", Slot = "12")] get { return 0; } } /// Returns a string that contains the HRESULT of the error. /// A string that represents the HRESULT. // Token: 0x06002CC8 RID: 11464 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x6002CC8")] [Address(RVA = "0x2CEDE70", Offset = "0x2CECE70", VA = "0x182CEDE70", Slot = "3")] public override string ToString() { return null; } } }