18 lines
302 B
Python
18 lines
302 B
Python
|
"""
|
||
|
Supervisr Mod Oauth Client Errors
|
||
|
"""
|
||
|
|
||
|
|
||
|
class OAuthClientError(Exception):
|
||
|
"""
|
||
|
Base error for all OAuth Client errors
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
|
||
|
class OAuthClientEmailMissingError(OAuthClientError):
|
||
|
"""
|
||
|
Error which is raised when user is missing email address from profile
|
||
|
"""
|
||
|
pass
|