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

41 lines
1.9 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Data
{
/// <summary>Represents the exception that is thrown when the <see cref="P:System.Data.DataColumn.Expression" /> property of a <see cref="T:System.Data.DataColumn" /> cannot be evaluated.</summary>
// Token: 0x0200005C RID: 92
[Token(Token = "0x200005C")]
[Serializable]
public class EvaluateException : InvalidExpressionException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> 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 particular serialized stream.</param>
// Token: 0x0600060A RID: 1546 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600060A")]
[Address(RVA = "0xA22990", Offset = "0xA21990", VA = "0x180A22990")]
protected EvaluateException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> class.</summary>
// Token: 0x0600060B RID: 1547 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600060B")]
[Address(RVA = "0xA22A10", Offset = "0xA21A10", VA = "0x180A22A10")]
public EvaluateException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.EvaluateException" /> class with the specified string.</summary>
/// <param name="s">The string to display when the exception is thrown.</param>
// Token: 0x0600060C RID: 1548 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600060C")]
[Address(RVA = "0xA22A20", Offset = "0xA21A20", VA = "0x180A22A20")]
public EvaluateException(string s)
{
}
}
}