コード例 #1
0
ファイル: Exception.cs プロジェクト: slipalison/Base.WebAPI
 public Exception(string message) : base(message)
 {
     var bE = new BuildException(HttpContext.Current, new System.Exception(message), HttpContext.Current.Request.ToString());
 }
コード例 #2
0
ファイル: Exception.cs プロジェクト: slipalison/Base.WebAPI
 public Exception(string message, System.Exception inner)
     : base(message, inner)
 {
     var bE = new BuildException(HttpContext.Current, inner, HttpContext.Current.Request.ToString());
 }