using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Reflection
{
/// The exception that is thrown when binding to a member results in more than one member matching the binding criteria. This class cannot be inherited.
// Token: 0x02000204 RID: 516
[Token(Token = "0x2000204")]
[ComVisible(true)]
[Serializable]
public sealed class AmbiguousMatchException : SystemException
{
/// Initializes a new instance of the class with an empty message string and the root cause exception set to .
// Token: 0x060013B5 RID: 5045 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013B5")]
[Address(RVA = "0x2A00960", Offset = "0x29FF760", VA = "0x182A00960")]
public AmbiguousMatchException()
{
}
/// Initializes a new instance of the class with its message string set to the given message and the root cause exception set to .
/// A string indicating the reason this exception was thrown.
// Token: 0x060013B6 RID: 5046 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013B6")]
[Address(RVA = "0x2A00930", Offset = "0x29FF730", VA = "0x182A00930")]
public AmbiguousMatchException(string message)
{
}
// Token: 0x060013B7 RID: 5047 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60013B7")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
internal AmbiguousMatchException(SerializationInfo info, StreamingContext context)
{
}
}
}