class Rack::OAuth2::Server::InvalidClientError

The client identifier provided is invalid, the client failed to authenticate, the client did not include its credentials, provided multiple client credentials, or used unsupported credentials type.

Public Class Methods

new() click to toggle source
Calls superclass method Rack::OAuth2::Server::OAuthError::new
# File lib/rack/oauth2/server/errors.rb, line 36
def initialize
  super :invalid_client, "Client ID and client secret do not match."
end