System.Web.HttpException.CreateFromLastError C# (CSharp) Method

CreateFromLastError() public static method

public static CreateFromLastError ( string message ) : HttpException
message string
return HttpException
		public static HttpException CreateFromLastError (string message)
		{
			WebTrace.WriteLine ("CreateFromLastError");
			return new HttpException (message, 0);
		}