MCPcopy Create free account
hub / github.com/bugy/script-server / AuthFailureError

Class AuthFailureError

src/auth/auth_base.py:40–48  ·  view source on GitHub ↗

Server-side error, which shows, that authentication process failed because of some internal error. These kind of errors are not related to user credentials

Source from the content-addressed store, hash-verified

38
39
40class AuthFailureError(Exception):
41 """Server-side error, which shows, that authentication process failed because of some internal error.
42 These kind of errors are not related to user credentials"""
43
44 def __init__(self, message=None):
45 self.message = message
46
47 def get_message(self):
48 return self.message
49
50
51class AuthBadRequestException(Exception):

Callers 4

authenticateMethod · 0.90
_fetch_tokenMethod · 0.90
get_path_for_redirectFunction · 0.90
fetch_user_groupsMethod · 0.90

Calls

no outgoing calls

Tested by 1

fetch_user_groupsMethod · 0.72