123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZFW.CMS.Admin.App_Code
- {
- /// <summary>
- /// 操作日志
- /// </summary>
- public class UserOperationException : Exception
- {
- public UserOperationException() { }
- public UserOperationException(string message) : base(message) { }
- public UserOperationException(string message, Exception innerException) : base(message, innerException) { }
- }
- }
|