~mfoord/canonical-identity-provider/ssoclient-password-policy-error

« back to all changes in this revision

Viewing changes to ssoclient/v2/errors.py

  • Committer: Ricardo Kirkner
  • Date: 2013-02-19 18:05:10 UTC
  • mfrom: (1.1.2 password-reset-api)
  • Revision ID: ricardo@kirkner.com.ar-20130219180510-e7a3a4rc20v7q9ri
updated ssoclient to support password reset api

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
class ResourceNotFound(ApiException):
33
33
    error_code = "RESOURCE_NOT_FOUND"
 
34
 
 
35
 
 
36
class CanNotResetPassword(ApiException):
 
37
    error_code = "CAN_NOT_RESET_PASSWORD"
 
38