using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Data
{
/// Represents the exception that is thrown when attempting an action that violates a constraint.
// Token: 0x0200001A RID: 26
[Token(Token = "0x200001A")]
[Serializable]
public class ConstraintException : DataException
{
/// Initializes a new instance of the class using the specified serialization and stream context.
/// The data necessary to serialize or deserialize an object.
/// Description of the source and destination of the specified serialized stream.
// Token: 0x06000143 RID: 323 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000143")]
[Address(RVA = "0xCD81D0", Offset = "0xCD71D0", VA = "0x180CD81D0")]
protected ConstraintException(SerializationInfo info, StreamingContext context)
{
}
/// Initializes a new instance of the class. This is the default constructor.
// Token: 0x06000144 RID: 324 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000144")]
[Address(RVA = "0xCD8160", Offset = "0xCD7160", VA = "0x180CD8160")]
public ConstraintException()
{
}
/// Initializes a new instance of the class with the specified string.
/// The string to display when the exception is thrown.
// Token: 0x06000145 RID: 325 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000145")]
[Address(RVA = "0xCD81B0", Offset = "0xCD71B0", VA = "0x180CD81B0")]
public ConstraintException(string s)
{
}
}
}