System.Web Namespace HttpException Class
Constructs an Exception using HTTP error code, an error message, and an exception code.
[ VB ]
Public Sub New ( _
ByVal httpCode As Integer, _
ByVal message As String, _
ByVal hr As Integer _
)
[ C# ]
public HttpException (
int httpCode,
string message,
int hr
);
[ C++ ]
public: HttpException (
int httpCode,
String* message,
int hr
);
[ JScript ]
public function HttpException (
httpCode : int,
message : String,
hr : int
);
- httpCode
- The HTTP error code displayed on the client.
- message
- The error message displayed to the client.
- hr
- The error code that defines the error.
HttpException Members HttpException Constructor Overload List