auth
auth/errors.go
Handle more errors. Handle client errors. Match redirect handling with the spec.
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