43 lines
2.0 KiB
C#
43 lines
2.0 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Resources
|
|
{
|
|
/// <summary>The exception that is thrown if the main assembly does not contain the resources for the neutral culture, and an appropriate satellite assembly is missing.</summary>
|
|
// Token: 0x020001F9 RID: 505
|
|
[Token(Token = "0x20001F9")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class MissingManifestResourceException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Resources.MissingManifestResourceException" /> class with default properties.</summary>
|
|
// Token: 0x0600136B RID: 4971 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600136B")]
|
|
[Address(RVA = "0x2CF38C0", Offset = "0x2CF28C0", VA = "0x182CF38C0")]
|
|
public MissingManifestResourceException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Resources.MissingManifestResourceException" /> class with the specified error message.</summary>
|
|
/// <param name="message">The error message that explains the reason for the exception.</param>
|
|
// Token: 0x0600136C RID: 4972 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600136C")]
|
|
[Address(RVA = "0x2CF3890", Offset = "0x2CF2890", VA = "0x182CF3890")]
|
|
public MissingManifestResourceException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Resources.MissingManifestResourceException" /> class from serialized data.</summary>
|
|
/// <param name="info">The object that holds the serialized object data.</param>
|
|
/// <param name="context">The contextual information about the source or destination of the exception.</param>
|
|
// Token: 0x0600136D RID: 4973 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600136D")]
|
|
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
|
protected MissingManifestResourceException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|