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: 0x0200033B RID: 827 [Token(Token = "0x200033B")] [Serializable] public class LockRecursionException : Exception { /// Initializes a new instance of the class with a system-supplied message that describes the error. // Token: 0x06001F4F RID: 8015 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001F4F")] [Address(RVA = "0xF2D2C0", Offset = "0xF2C2C0", VA = "0x180F2D2C0")] 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: 0x06001F50 RID: 8016 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001F50")] [Address(RVA = "0xF2D320", Offset = "0xF2C320", VA = "0x180F2D320")] 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: 0x06001F51 RID: 8017 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001F51")] [Address(RVA = "0xF2D240", Offset = "0xF2C240", VA = "0x180F2D240")] protected LockRecursionException(SerializationInfo info, StreamingContext context) { } } }