Home | History | Annotate | Download | only in googleapiclient

Lines Matching refs:exception

631                 it into a data object before returning, or raising an exception
947 def list_animals(request_id, response, exception):
949 if exception is not None:
950 # Do something with the exception.
956 def list_farmers(request_id, response, exception):
958 if exception is not None:
959 # Do something with the exception.
980 form callback(id, response, exception). The first parameter is the
982 third is an googleapiclient.errors.HttpError exception object if an HTTP error
1178 uniqueness for each request_id, and if they are not an exception is
1185 form callback(id, response, exception). The first parameter is the
1187 third is an googleapiclient.errors.HttpError exception object if an HTTP error
1321 # Now process all callbacks that are erroring, and raise an exception for
1332 exception = None
1338 exception = e
1341 callback(request_id, response, exception)
1343 self._callback(request_id, response, exception)