Exception definitions.
Bases: ClientException
HTTP 400 - Bad request: you sent some malformed data.
Bases: Exception
The base exception class for all exceptions this library raises.
Bases: Exception
Bases: ClientException
HTTP 409 - Conflict
Bases: ClientException
HTTP 403 - Forbidden: your credentials don’t give you access to this resource.
Bases: ClientException
HTTP 501 - Not Implemented: the server does not support this operation.
Bases: Exception
Instance is in the deleted state.
Bases: RuntimeError
This function call is invalid in the way you are using this client.
Due to the transition to using keystoneauth some function calls are no longer available. You should make a similar call to the session object instead.
Bases: ClientException
HTTP 405 - Method Not Allowed
Bases: Exception
Bases: ClientException
HTTP 406 - Not Acceptable
Bases: ClientException
HTTP 404 - Not found
Bases: RetryAfterException
HTTP 413 - Over limit: you’re over the API limits for this time period.
Bases: RetryAfterException
HTTP 429 - Rate limit: you’ve sent too many requests for this time period.
Bases: Exception
Resource is in the error state.
Bases: Exception
Error in getting the resource.
Bases: ClientException
The base exception class for ClientExceptions that use Retry-After header.
Bases: ClientException
HTTP 401 - Unauthorized: bad credentials.
Bases: AttributeError
Indicates that the user is trying to transmit the argument to a method, which is not supported by selected version.
Bases: Exception
Indicates that the user is trying to use an unsupported console type when retrieving console urls of servers.
Bases: Exception
Indicates that the user is trying to use an unsupported version of the API.
Bases: Exception
Return an instance of an ClientException or subclass based on a requests response.
Usage:
resp, body = requests.request(...)
if resp.status_code != 200:
raise exception_from_response(resp, rest.text)
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.