auth

Paddy 2014-08-13 Parent:65c49af1ed3f Child:3423c552e249

5:7ae3f16002c1 Go to Latest

auth/errors.go

Handle more errors. Handle client errors. Match redirect handling with the spec.

History
     1.1 --- a/errors.go	Wed Aug 13 03:45:24 2014 -0400
     1.2 +++ b/errors.go	Wed Aug 13 05:51:25 2014 -0400
     1.3 @@ -19,6 +19,7 @@
     1.4  	InvalidMethodError    = errors.New("Invalid request method.")
     1.5  	InternalServerError   = errors.New("Internal server error.")
     1.6  	ErrorNotAuthenticated = errors.New("Not authenticated.")
     1.7 +	InvalidClientError    = errors.New("Invalid client.")
     1.8  )
     1.9  
    1.10  type URIFormatError string