using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// The exception that is thrown when the method is called on a semaphore whose count is already at the maximum.
// Token: 0x0200033F RID: 831
[Token(Token = "0x200033F")]
[TypeForwardedFrom("System, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")]
[ComVisible(false)]
[Serializable]
public class SemaphoreFullException : SystemException
{
/// Initializes a new instance of the class with default values.
// Token: 0x06001F6F RID: 8047 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F6F")]
[Address(RVA = "0xB43BA0", Offset = "0xB42BA0", VA = "0x180B43BA0")]
public SemaphoreFullException()
{
}
/// 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: 0x06001F70 RID: 8048 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F70")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected SemaphoreFullException(SerializationInfo info, StreamingContext context)
{
}
}
}