Searched refs:AppIdentityError (Results 1 – 2 of 2) sorted by relevance
37 class AppIdentityError(Exception): class408 raise AppIdentityError('Wrong number of segments in token: %s' % jwt)418 raise AppIdentityError('Can\'t parse token: %s' % json_body)428 raise AppIdentityError('Invalid token signature: %s' % jwt)433 raise AppIdentityError('No iat field in token: %s' % json_body)440 raise AppIdentityError('No exp field in token: %s' % json_body)442 raise AppIdentityError('exp field too far in future: %s' % json_body)446 raise AppIdentityError('Token used too early, %d < %d: %s' %449 raise AppIdentityError('Token used too late, %d > %d: %s' %456 raise AppIdentityError('No aud field in token: %s' % json_body)[all …]
87 except crypt.AppIdentityError as e: