using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Data
{
/// Represents the exception that is thrown when you try to return a version of a that has been deleted.
// Token: 0x02000022 RID: 34
[Token(Token = "0x2000022")]
[Serializable]
public class VersionNotFoundException : DataException
{
/// Initializes a new instance of the class with serialization information.
/// The data that is required to serialize or deserialize an object.
/// Description of the source and destination of the specified serialized stream.
// 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)
{
}
/// Initializes a new instance of the class.
// Token: 0x0600015C RID: 348 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600015C")]
[Address(RVA = "0xBDF150", Offset = "0xBDE150", VA = "0x180BDF150")]
public VersionNotFoundException()
{
}
/// Initializes a new instance of the class with the specified string.
/// The string to display when the exception is thrown.
// Token: 0x0600015D RID: 349 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600015D")]
[Address(RVA = "0xBDF0B0", Offset = "0xBDE0B0", VA = "0x180BDF0B0")]
public VersionNotFoundException(string s)
{
}
}
}