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