Home
last modified time | relevance | path

Searched refs:AppIdentityError (Results 1 – 3 of 3) sorted by relevance

/external/python/oauth2client/oauth2client/
Dcrypt.py36 class AppIdentityError(Exception): class
123 raise AppIdentityError('Invalid token signature')
147 raise AppIdentityError(
150 raise AppIdentityError('Wrong recipient, {0} != {1}: {2}'.format(
183 raise AppIdentityError(
187 raise AppIdentityError(
192 raise AppIdentityError(
198 raise AppIdentityError('Token used too early, {0} < {1}: {2}'.format(
203 raise AppIdentityError('Token used too late, {0} > {1}: {2}'.format(
227 raise AppIdentityError(
[all …]
/external/python/oauth2client/tests/
Dtest_crypt.py138 with self.assertRaises(crypt.AppIdentityError):
163 with self.assertRaises(crypt.AppIdentityError):
171 with self.assertRaises(crypt.AppIdentityError):
181 except crypt.AppIdentityError as exc:
265 except crypt.AppIdentityError as exc:
280 except crypt.AppIdentityError as exc:
Dtest_jwt.py89 with self.assertRaises(crypt.AppIdentityError) as exc_manager: