exception documentation

class RedirectWithNoLocation(Error): (source)

Constructor: RedirectWithNoLocation(code, message, uri)

View In Hierarchy

Exception passed to ResponseFailed if we got a redirect without a Location header field.

Present Since
11.1
Method __init__ Initializes a page redirect exception when no location is given.
Instance Variable message Undocumented
Instance Variable uri The URI which failed to give a proper location header field.

Inherited from Error:

Method __str__ 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.
def __init__(self, code: Union[bytes, int], message: bytes, uri: bytes): (source)

Initializes a page redirect exception when no location is given.

Parameters
code:bytesRefers to an HTTP status code, for example http.NOT_FOUND. If no message is given, code is mapped to a descriptive string that is used instead.
message:bytesA short error message.
uri:bytesThe URI which failed to give a proper location header field.

The URI which failed to give a proper location header field.