UserOperationException.cs 495 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace CZKJ.GBRS2.Web.AppCode
  6. {
  7. /// <summary>
  8. /// 操作日志
  9. /// </summary>
  10. public class UserOperationException : Exception
  11. {
  12. public UserOperationException() { }
  13. public UserOperationException(string message) : base(message) { }
  14. public UserOperationException(string message, Exception innerException) : base(message, innerException) { }
  15. }
  16. }