Skip to content

Commit

Permalink
完善
Browse files Browse the repository at this point in the history
  • Loading branch information
magicodes committed Jan 31, 2015
1 parent b95f27b commit 65630af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Magicodes.Web.Interfaces/MagicodesException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ public class MagicodesException : ApplicationException
/// </summary>
public string KeyWord { get; set; }
public MagicodesException() { }

/// <summary>
/// Magicodes.NET框架异常
/// </summary>
/// <param name="message">异常消息以及关键字(建议不要添加特殊字符)</param>
public MagicodesException(string message) : base(message) {
KeyWord = message;
}
Expand Down
2 changes: 1 addition & 1 deletion Magicodes.Web.Interfaces/Strategy/StrategyManagerBase.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Magicodes.Web.Interfaces.Strategy.Cache;
using Magicodes.Web.Interfaces.Strategy.Email;
using Magicodes.Web.Interfaces.Strategy.Logger;
using Magicodes.Web.Interfaces.Strategy.Sesstion;
using Magicodes.Web.Interfaces.Strategy.Session;
using Magicodes.Web.Interfaces.Strategy.SMS;
using Magicodes.Web.Interfaces.Strategy.User;
using System;
Expand Down

0 comments on commit 65630af

Please sign in to comment.