using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// The exception that is thrown when a method requires the caller to own the lock on a given Monitor, and the method is invoked by a caller that does not own that lock.
// Token: 0x02000348 RID: 840
[Token(Token = "0x2000348")]
[ComVisible(true)]
[Serializable]
public class SynchronizationLockException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x06001F92 RID: 8082 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F92")]
[Address(RVA = "0xB469C0", Offset = "0xB459C0", VA = "0x180B469C0")]
public SynchronizationLockException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The error message that explains the reason for the exception.
// Token: 0x06001F93 RID: 8083 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F93")]
[Address(RVA = "0xB46990", Offset = "0xB45990", VA = "0x180B46990")]
public SynchronizationLockException(string message)
{
}
/// Initializes a new instance of the class with serialized data.
/// The that holds the serialized object data about the exception being thrown.
/// The that contains contextual information about the source or destination.
// Token: 0x06001F94 RID: 8084 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F94")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected SynchronizationLockException(SerializationInfo info, StreamingContext context)
{
}
}
}