Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

41 lines
1.8 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Data
{
/// <summary>Represents the exception that is thrown when you try to return a version of a <see cref="T:System.Data.DataRow" /> that has been deleted.</summary>
// Token: 0x02000022 RID: 34
[Token(Token = "0x2000022")]
[Serializable]
public class VersionNotFoundException : DataException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class with serialization information.</summary>
/// <param name="info">The data that is required to serialize or deserialize an object.</param>
/// <param name="context">Description of the source and destination of the specified serialized stream.</param>
// Token: 0x0600015B RID: 347 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600015B")]
[Address(RVA = "0xBDF0D0", Offset = "0xBDE0D0", VA = "0x180BDF0D0")]
protected VersionNotFoundException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class.</summary>
// Token: 0x0600015C RID: 348 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600015C")]
[Address(RVA = "0xBDF150", Offset = "0xBDE150", VA = "0x180BDF150")]
public VersionNotFoundException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.VersionNotFoundException" /> class with the specified string.</summary>
/// <param name="s">The string to display when the exception is thrown.</param>
// Token: 0x0600015D RID: 349 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600015D")]
[Address(RVA = "0xBDF0B0", Offset = "0xBDE0B0", VA = "0x180BDF0B0")]
public VersionNotFoundException(string s)
{
}
}
}