Exception: Rack::OAuth2::Server::AccessDeniedError

Inherits:
OAuthError
  • Object
show all
Defined in:
lib/rack/oauth2/server/errors.rb

Overview

The end-user or authorization server denied the request.

Instance Attribute Summary

Attributes inherited from OAuthError

#code

Instance Method Summary collapse

Constructor Details

#initializeAccessDeniedError

Returns a new instance of AccessDeniedError.



19
20
21
# File 'lib/rack/oauth2/server/errors.rb', line 19

def initialize
  super :access_denied, "You are now allowed to access this resource."
end