41 lines
1.8 KiB
C#
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 perform an operation on a <see cref="T:System.Data.DataRow" /> that is not in a <see cref="T:System.Data.DataTable" />.</summary>
|
|
// Token: 0x02000021 RID: 33
|
|
[Token(Token = "0x2000021")]
|
|
[Serializable]
|
|
public class RowNotInTableException : DataException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> 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: 0x06000158 RID: 344 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000158")]
|
|
[Address(RVA = "0x9F6650", Offset = "0x9F5650", VA = "0x1809F6650")]
|
|
protected RowNotInTableException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> class.</summary>
|
|
// Token: 0x06000159 RID: 345 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000159")]
|
|
[Address(RVA = "0x9F66D0", Offset = "0x9F56D0", VA = "0x1809F66D0")]
|
|
public RowNotInTableException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.RowNotInTableException" /> class with the specified string.</summary>
|
|
/// <param name="s">The string to display when the exception is thrown.</param>
|
|
// Token: 0x0600015A RID: 346 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x600015A")]
|
|
[Address(RVA = "0x9F6720", Offset = "0x9F5720", VA = "0x1809F6720")]
|
|
public RowNotInTableException(string s)
|
|
{
|
|
}
|
|
}
|
|
}
|