ForbiddenException Class

HttpServer.dll

The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. If the server does not wish to make this information available to the client, the status code 404 (Not Found) can be used instead. Text taken from: http://www.submissionchamber.com/help-guides/error-codes.php

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

Syntax

C#
public class ForbiddenException : HttpException
Visual Basic (Declaration)
Public Class ForbiddenException _
	Inherits HttpException
Visual C++
public ref class ForbiddenException : public HttpException

Inheritance Hierarchy

System..::.Object
  System..::.Exception
    HttpServer.Exceptions..::.HttpException
      HttpServer.Exceptions..::.ForbiddenException

See Also