using System; using System.Runtime.Serialization; namespace System.Runtime.InteropServices { /// Represents Structured Exception Handler (SEH) errors. // Token: 0x0200033A RID: 826 [ComVisible(true)] [Serializable] public class SEHException : ExternalException { /// Initializes a new instance of the class. // Token: 0x06002309 RID: 8969 RVA: 0x0007A718 File Offset: 0x00078918 public SEHException() { } /// Initializes a new instance of the class with a specified message. /// The message that indicates the reason for the exception. // Token: 0x0600230A RID: 8970 RVA: 0x0007A720 File Offset: 0x00078920 public SEHException(string message) : base(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 null, the current exception is raised in a catch block that handles the inner exception. // Token: 0x0600230B RID: 8971 RVA: 0x0007A72C File Offset: 0x0007892C public SEHException(string message, Exception inner) : base(message, inner) { } /// 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 null. // Token: 0x0600230C RID: 8972 RVA: 0x0007A738 File Offset: 0x00078938 protected SEHException(SerializationInfo info, StreamingContext context) : base(info, context) { } /// Indicates whether the exception can be recovered from, and whether the code can continue from the point where the exception was thrown. /// Always false, because resumable exceptions are not yet implemented. // Token: 0x0600230D RID: 8973 RVA: 0x0007A744 File Offset: 0x00078944 public virtual bool CanResume() { return false; } } }