This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
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)
{
}
}
}