using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Data
{
/// Represents the exception that is thrown when a duplicate database object name is encountered during an add operation in a -related object.
// Token: 0x0200001C RID: 28
[Token(Token = "0x200001C")]
[Serializable]
public class DuplicateNameException : DataException
{
/// Initializes a new instance of the class with serialization information.
/// The data that is required to serialize or deserialize an object.
/// Description of the source and destination of the specified serialized stream.
// Token: 0x06000149 RID: 329 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000149")]
[Address(RVA = "0xA228A0", Offset = "0xA218A0", VA = "0x180A228A0")]
protected DuplicateNameException(SerializationInfo info, StreamingContext context)
{
}
/// Initializes a new instance of the class.
// Token: 0x0600014A RID: 330 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600014A")]
[Address(RVA = "0xA22940", Offset = "0xA21940", VA = "0x180A22940")]
public DuplicateNameException()
{
}
/// Initializes a new instance of the class with the specified string.
/// The string to display when the exception is thrown.
// Token: 0x0600014B RID: 331 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x600014B")]
[Address(RVA = "0xA22920", Offset = "0xA21920", VA = "0x180A22920")]
public DuplicateNameException(string s)
{
}
}
}