This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,42 @@
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: 0x020001F2 RID: 498
[Token(Token = "0x20001F2")]
[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: 0x0600132E RID: 4910 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600132E")]
[Address(RVA = "0x294F8B0", Offset = "0x294E6B0", VA = "0x18294F8B0")]
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: 0x0600132F RID: 4911 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600132F")]
[Address(RVA = "0x294F880", Offset = "0x294E680", VA = "0x18294F880")]
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: 0x06001330 RID: 4912 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001330")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected MissingManifestResourceException(SerializationInfo info, StreamingContext context)
{
}
}
}