Exception: Rack::OAuth2::Server::InvalidScopeError

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

Overview

The requested scope is invalid, unknown, or malformed.

Instance Attribute Summary

Attributes inherited from OAuthError

#code

Instance Method Summary collapse

Constructor Details

#initializeInvalidScopeError

Returns a new instance of InvalidScopeError.



62
63
64
# File 'lib/rack/oauth2/server/errors.rb', line 62

def initialize
  super :invalid_scope, "The requested scope is not supported."
end