UserOperationException.cs 495 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace CZFW.CMS.Admin.App_Code
  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. }