41 lines
2.0 KiB
C#
41 lines
2.0 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data
|
|
{
|
|
/// <summary>Represents the exception that is thrown when you try to add a <see cref="T:System.Data.DataColumn" /> that contains an invalid <see cref="P:System.Data.DataColumn.Expression" /> to a <see cref="T:System.Data.DataColumnCollection" />.</summary>
|
|
// Token: 0x0200005B RID: 91
|
|
[Token(Token = "0x200005B")]
|
|
[Serializable]
|
|
public class InvalidExpressionException : DataException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class with the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and the <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
|
|
/// <param name="info">The data needed to serialize or deserialize an object.</param>
|
|
/// <param name="context">The source and destination of a given serialized stream.</param>
|
|
// Token: 0x06000607 RID: 1543 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000607")]
|
|
[Address(RVA = "0x9ED4E0", Offset = "0x9EC4E0", VA = "0x1809ED4E0")]
|
|
protected InvalidExpressionException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class.</summary>
|
|
// Token: 0x06000608 RID: 1544 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000608")]
|
|
[Address(RVA = "0x9ED560", Offset = "0x9EC560", VA = "0x1809ED560")]
|
|
public InvalidExpressionException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidExpressionException" /> class with the specified string.</summary>
|
|
/// <param name="s">The string to display when the exception is thrown.</param>
|
|
// Token: 0x06000609 RID: 1545 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000609")]
|
|
[Address(RVA = "0x9ED4D0", Offset = "0x9EC4D0", VA = "0x1809ED4D0")]
|
|
public InvalidExpressionException(string s)
|
|
{
|
|
}
|
|
}
|
|
}
|