Beispiel #1
0
 public Exception(string message) : base(message)
 {
     var bE = new BuildException(HttpContext.Current, new System.Exception(message), HttpContext.Current.Request.ToString());
 }
Beispiel #2
0
 public Exception(string message, System.Exception inner)
     : base(message, inner)
 {
     var bE = new BuildException(HttpContext.Current, inner, HttpContext.Current.Request.ToString());
 }