using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// The exception that is thrown when recursive entry into a lock is not compatible with the recursion policy for the lock.
// Token: 0x02000321 RID: 801
[Token(Token = "0x2000321")]
[Serializable]
public class LockRecursionException : Exception
{
/// Initializes a new instance of the class with a system-supplied message that describes the error.
// Token: 0x06001D4E RID: 7502 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D4E")]
[Address(RVA = "0x29220B0", Offset = "0x2920EB0", VA = "0x1829220B0")]
public LockRecursionException()
{
}
/// Initializes a new instance of the class with a specified message that describes the error.
/// The message that describes the exception. The caller of this constructor must make sure that this string has been localized for the current system culture.
// Token: 0x06001D4F RID: 7503 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D4F")]
[Address(RVA = "0x2922110", Offset = "0x2920F10", VA = "0x182922110")]
public LockRecursionException(string message)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data.
/// The contextual information about the source or destination.
// Token: 0x06001D50 RID: 7504 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D50")]
[Address(RVA = "0x2922030", Offset = "0x2920E30", VA = "0x182922030")]
protected LockRecursionException(SerializationInfo info, StreamingContext context)
{
}
}
}