BadRequestException Constructor (String, Exception)

HttpServer.dll

Create a new bad request exception.

Namespace:  HttpServer.Exceptions
Assembly:  HttpServer (in HttpServer.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public BadRequestException(
	string errMsg,
	Exception inner
)
Visual Basic (Declaration)
Public Sub New ( _
	errMsg As String, _
	inner As Exception _
)
Visual C++
public:
BadRequestException(
	String^ errMsg, 
	Exception^ inner
)

Parameters

errMsg
Type: System..::.String
reason to why the request was bad.
inner
Type: System..::.Exception
inner exception

See Also