Files
27Aug2021-Cpp2IL-Dump/System.Data/InvalidConstraintException.cs
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

41 lines
1.8 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Data
{
/// <summary>Represents the exception that is thrown when incorrectly trying to create or access a relation.</summary>
// Token: 0x0200001E RID: 30
[Token(Token = "0x200001E")]
[Serializable]
public class InvalidConstraintException : DataException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class with serialization information.</summary>
/// <param name="info">The data that is required to serialize or deserialize an object.</param>
/// <param name="context">Description of the source and destination of the specified serialized stream.</param>
// Token: 0x0600014F RID: 335 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600014F")]
[Address(RVA = "0x9ED400", Offset = "0x9EC400", VA = "0x1809ED400")]
protected InvalidConstraintException(SerializationInfo info, StreamingContext context)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class.</summary>
// Token: 0x06000150 RID: 336 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000150")]
[Address(RVA = "0x9ED480", Offset = "0x9EC480", VA = "0x1809ED480")]
public InvalidConstraintException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.InvalidConstraintException" /> class with the specified string.</summary>
/// <param name="s">The string to display when the exception is thrown.</param>
// Token: 0x06000151 RID: 337 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000151")]
[Address(RVA = "0x9ED3E0", Offset = "0x9EC3E0", VA = "0x1809ED3E0")]
public InvalidConstraintException(string s)
{
}
}
}