class documentation

class Error(Exception): (source)

Known subclasses: twisted.web.client.PartialDownloadError, twisted.web.error.InfiniteRedirection, twisted.web.error.PageRedirect, twisted.web.error.RedirectWithNoLocation

View In Hierarchy

A basic HTTP error.

ParametersmessageA short error message, for example "NOT FOUND".
Instance Variable status Refers to an HTTP status code, for example http.NOT_FOUND.
Instance Variable message Undocumented
Instance Variable response A complete HTML document for an error page.
Method __init__ Initializes a basic exception.
Method __str__ Undocumented
status = (source)
Refers to an HTTP status code, for example http.NOT_FOUND.
(type: bytes)
response = (source)
A complete HTML document for an error page.
(type: bytes)
def __init__(self, code, message=None, response=None): (source)

Initializes a basic exception.

ParameterscodeRefers to an HTTP status code (for example, 200) either as an integer or a bytestring representing such. If no message is given, code is mapped to a descriptive bytestring that is used instead. (type: bytes or int)
messageA short error message, for example "NOT FOUND". (type: bytes)
responseA complete HTML document for an error page. (type: bytes)
def __str__(self): (source)

Undocumented

ReturnsUndocumented (type: str)
API Documentation for Twisted, generated by pydoctor 21.2.0 at 2021-02-28 21:00:42.