LockRecursionException.cs 956 B

1234567891011121314151617181920212223242526272829303132
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. // See the LICENSE file in the project root for more information.
  4. using System;
  5. using System.Runtime.Serialization;
  6. namespace System.Threading
  7. {
  8. [Serializable]
  9. [System.Runtime.CompilerServices.TypeForwardedFrom("System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
  10. public class LockRecursionException : System.Exception
  11. {
  12. public LockRecursionException()
  13. {
  14. }
  15. public LockRecursionException(string message)
  16. : base(message)
  17. {
  18. }
  19. public LockRecursionException(string message, Exception innerException)
  20. : base(message, innerException)
  21. {
  22. }
  23. protected LockRecursionException(SerializationInfo info, StreamingContext context) : base(info, context)
  24. {
  25. }
  26. }
  27. }