twisted.web.error.Error(Exception) class documentationtwisted.web.error
(View In Hierarchy)
Known subclasses: twisted.web.client.PartialDownloadError, twisted.web.error.InfiniteRedirection, twisted.web.error.PageRedirect, twisted.web.error.RedirectWithNoLocation
A basic HTTP error.
| Parameters | message | A short error message, for example "NOT FOUND". (type: bytes) | 
| Instance Variable | status | Refers to an HTTP status code, for example http.NOT_FOUND. (type:bytes) | 
| Instance Variable | response | A complete HTML document for an error page. (type: bytes) | 
| Method | __init__ | Initializes a basic exception. | 
| Method | __str__ | Undocumented | 
Initializes a basic exception.
| Parameters | code | Refers to an HTTP status code (for example, 200) either as an integer or a 
bytestring representing such. If no messageis given,codeis mapped to a descriptive bytestring that is used 
instead. (type:bytesorint) | 
| message | A short error message, for example "NOT FOUND". (type: bytes) | |
| response | A complete HTML document for an error page. (type: bytes) |