This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 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 errors are generated using ADO.NET components.</summary>
// Token: 0x02000002 RID: 2
[Token(Token = "0x2000002")]
[Serializable]
public class DataException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class with the specified serialization information and context.</summary>
/// <param name="info">The data necessary to serialize or deserialize an object.</param>
/// <param name="context">Description of the source and destination of the specified serialized stream.</param>
// Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000001")]
[Address(RVA = "0x750CA0", Offset = "0x74FAA0", VA = "0x180750CA0")]
protected DataException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class. This is the default constructor.</summary>
// Token: 0x06000002 RID: 2 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000002")]
[Address(RVA = "0x750D20", Offset = "0x74FB20", VA = "0x180750D20")]
public DataException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.DataException" /> class with the specified string.</summary>
/// <param name="s">The string to display when the exception is thrown.</param>
// Token: 0x06000003 RID: 3 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000003")]
[Address(RVA = "0x750D70", Offset = "0x74FB70", VA = "0x180750D70")]
public DataException(string s)
{
}
}
}