Plain is headed towards 1.0! Subscribe for development updates →
1class OAuthError(Exception): 2 """Base class for OAuth errors""" 3 4 pass 5 6 7class OAuthStateMismatchError(OAuthError): 8 pass 9 10 11class OAuthUserAlreadyExistsError(OAuthError): 12 pass