Meetup Exceptions Module

Exception Classes

exception meetup.exceptions.ApiKeyError[source]

There is a problem with the client API key.

exception meetup.exceptions.ApiMethodError[source]

The called API method is not defined or does not exist.

exception meetup.exceptions.ApiParameterError[source]

The called API method is missing a required parameter.

exception meetup.exceptions.ClientException[source]

Meetup Client Exception base class.

exception meetup.exceptions.HttpClientError[source]

Called when the server tells us there was a client error (4xx).

exception meetup.exceptions.HttpMethodError[source]

The requested HTTP Method is not valid.

exception meetup.exceptions.HttpNotFoundError[source]

Called when the server sends a 404 error.

exception meetup.exceptions.HttpServerError[source]

Called when the server tells us there was a server error (5xx).

exception meetup.exceptions.HttpTooManyRequests[source]

Called when the server sends a 429 error (when you’ve gone over your request rate limit)

exception meetup.exceptions.HttpUnauthorized[source]

Called when the server sends a 401 error (when you don’t provide a valid key)

exception meetup.exceptions.MeetupBaseException[source]

All Meetup exceptions inherit from this exception.

exception meetup.exceptions.MeetupHttpBaseException[source]

All Meetup HTTP Exceptions inherit from this exception.