UnauthorizedException Constructor (String, Exception)

HttpServer.dll

Create a new unauhtorized exception.

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

Syntax

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

Parameters

message
Type: System..::.String
reason to why the request was unauthorized.
inner
Type: System..::.Exception
inner exception

See Also