using System; using System.Runtime.InteropServices; using System.Runtime.Serialization; namespace System.Resources { /// The exception thrown if the main assembly does not contain the resources for the neutral culture, and they are required because of a missing appropriate satellite assembly. // Token: 0x02000274 RID: 628 [ComVisible(true)] [Serializable] public class MissingManifestResourceException : SystemException { /// Initializes a new instance of the class with default properties. // Token: 0x0600202A RID: 8234 RVA: 0x00074D5C File Offset: 0x00072F5C public MissingManifestResourceException() : base(Locale.GetText("The assembly does not contain the resources for the required culture.")) { } /// Initializes a new instance of the class with the specified error message. /// The error message that explains the reason for the exception. // Token: 0x0600202B RID: 8235 RVA: 0x00074D70 File Offset: 0x00072F70 public MissingManifestResourceException(string message) : base(message) { } /// Initializes a new instance of the class from serialized data. /// The object that holds the serialized object data. /// The contextual information about the source or destination of the exception. // Token: 0x0600202C RID: 8236 RVA: 0x00074D7C File Offset: 0x00072F7C protected MissingManifestResourceException(SerializationInfo info, StreamingContext context) : base(info, context) { } /// 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: 0x0600202D RID: 8237 RVA: 0x00074D88 File Offset: 0x00072F88 public MissingManifestResourceException(string message, Exception inner) : base(message, inner) { } } }