HttpException Constructor (String, HttpStatusCode, Uri, Exception) | 
  
    Namespace: 
   MaxMind.GeoIP2.Exceptions
    Assembly:
   MaxMind.GeoIP2 (in MaxMind.GeoIP2.dll) Version: 3.0.0
Syntaxpublic HttpException(
	string message,
	HttpStatusCode httpStatus,
	Uri uri,
	Exception innerException
)
Public Sub New ( 
	message As String,
	httpStatus As HttpStatusCode,
	uri As Uri,
	innerException As Exception
)
public:
HttpException(
	String^ message, 
	HttpStatusCode httpStatus, 
	Uri^ uri, 
	Exception^ innerException
)
new : 
        message : string * 
        httpStatus : HttpStatusCode * 
        uri : Uri * 
        innerException : Exception -> HttpExceptionParameters
- message
 - Type: SystemString
A message describing the reason why the exception was thrown. - httpStatus
 - Type: System.NetHttpStatusCode
The HTTP status of the response that caused the exception. - uri
 - Type: SystemUri
The URL queried. - innerException
 - Type: SystemException
The underlying exception that caused this one. 
See Also