exception classes.
Bases: exceptions.Exception
raised when a response have already been read
Bases: exceptions.Exception
Exception returned by the parser when the status line is invalid
Bases: restkit.errors.ParseException
exception raised when we gore more headers than max_header_count
Bases: exceptions.Exception
Not a valid url for use with this software.
Bases: exceptions.Exception
Bases: exceptions.Exception
Generic exception returned by the parser
Bases: exceptions.Exception
Bases: exceptions.Exception
Exception raised when the redirection limit is reached.
Bases: exceptions.Exception
Exception raised when a request is malformed
Bases: restkit.errors.ResourceError
Exception raised when an unexpected HTTP error is received in response to a request.
The request failed, meaning the remote HTTP server returned a code other than success, unauthorized, or NotFound.
The exception message attempts to extract the error
You can get the status code by e.status_int, or see anything about the response via e.response. For example, the entire result body (which is probably an HTML error page) is e.response.body.
Bases: exceptions.Exception
Exception raised on socket timeout
Bases: exceptions.Exception
default error class
Bases: restkit.errors.ResourceError
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.11
Bases: restkit.errors.ResourceError
Exception raised when no resource was found at the given url.
Bases: exceptions.Exception
Error raised while getting response or decompressing response stream
Bases: restkit.errors.ResourceError
Exception raised when an authorization is required to access to the resource specified.
Bases: exceptions.Exception
exception raised when remote closed the connection