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: 0x0200032E RID: 814
[Token(Token = "0x200032E")]
[ComVisible(true)]
[Serializable]
public class SynchronizationLockException : SystemException
{
/// Initializes a new instance of the class with default properties.
// Token: 0x06001D90 RID: 7568 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D90")]
[Address(RVA = "0x2927F20", Offset = "0x2926D20", VA = "0x182927F20")]
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: 0x06001D91 RID: 7569 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D91")]
[Address(RVA = "0x2927EF0", Offset = "0x2926CF0", VA = "0x182927EF0")]
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: 0x06001D92 RID: 7570 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D92")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected SynchronizationLockException(SerializationInfo info, StreamingContext context)
{
}
}
}