class Error(Exception): (source)
Known subclasses: twisted.web.client.PartialDownloadError, twisted.web.error.InfiniteRedirection, twisted.web.error.PageRedirect, twisted.web.error.RedirectWithNoLocation
| Parameters | |
| message | A short error message, for example "NOT FOUND". |
| Method | __init__ |
Initializes a basic exception. |
| Method | __str__ |
Undocumented |
| Instance Variable | message |
Undocumented |
| Instance Variable | response |
A complete HTML document for an error page. |
| Instance Variable | status |
Refers to an HTTP status code, for example http.NOT_FOUND. |
twisted.web.error.InfiniteRedirection, twisted.web.error.PageRedirect, twisted.web.error.RedirectWithNoLocation| Parameters | |
code:bytes or int | Refers 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. |
message:bytes | A short error message, for example "NOT FOUND". |
response:bytes | A complete HTML document for an error page. |
twisted.web.error.InfiniteRedirection, twisted.web.error.PageRedirect, twisted.web.error.RedirectWithNoLocationUndocumented