using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// The exception that is thrown when an attempt is made to open a system mutex, semaphore, or event wait handle that does not exist.
// Token: 0x02000346 RID: 838
[Token(Token = "0x2000346")]
[ComVisible(false)]
[Serializable]
public class WaitHandleCannotBeOpenedException : ApplicationException
{
/// Initializes a new instance of the class with default values.
// Token: 0x06001E47 RID: 7751 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001E47")]
[Address(RVA = "0x1DB75C0", Offset = "0x1DB63C0", VA = "0x181DB75C0")]
public WaitHandleCannotBeOpenedException()
{
}
/// Initializes a new instance of the class with a specified error message.
/// The error message that explains the reason for the exception.
// Token: 0x06001E48 RID: 7752 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001E48")]
[Address(RVA = "0x1DB7590", Offset = "0x1DB6390", VA = "0x181DB7590")]
public WaitHandleCannotBeOpenedException(string message)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data about the exception being thrown.
/// The object that contains contextual information about the source or destination.
// Token: 0x06001E49 RID: 7753 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001E49")]
[Address(RVA = "0x700790", Offset = "0x6FF590", VA = "0x180700790")]
protected WaitHandleCannotBeOpenedException(SerializationInfo info, StreamingContext context)
{
}
}
}