Server-side error, which shows, that authentication process failed because of some internal error. These kind of errors are not related to user credentials
| 38 | |
| 39 | |
| 40 | class 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 | |
| 51 | class AuthBadRequestException(Exception): |
no outgoing calls