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" /> contains a syntax error.</summary>
// Token: 0x0200005D RID: 93
[Token(Token = "0x200005D")]
[Serializable]
public class SyntaxErrorException : InvalidExpressionException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> 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 specific serialized stream.</param>
// Token: 0x0600060D RID: 1549 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600060D")]
[Address(RVA = "0xBDCDC0", Offset = "0xBDBDC0", VA = "0x180BDCDC0")]
protected SyntaxErrorException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> class.</summary>
// Token: 0x0600060E RID: 1550 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600060E")]
[Address(RVA = "0xA22A10", Offset = "0xA21A10", VA = "0x180A22A10")]
public SyntaxErrorException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SyntaxErrorException" /> class with the specified string.</summary>
/// <param name="s">The string to display when the exception is thrown.</param>
// Token: 0x0600060F RID: 1551 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600060F")]
[Address(RVA = "0xA22A20", Offset = "0xA21A20", VA = "0x180A22A20")]
public SyntaxErrorException(string s)
{
}
}
}