You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
339 B

3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Apewer
  5. {
  6. /// <summary>发生了锁定异常。</summary>
  7. public sealed class LockedException : Exception
  8. {
  9. /// <summary>创建锁定异常。</summary>
  10. public LockedException(string message = null) : base(message) { }
  11. }
  12. }