class Rack::OAuth2::Server::Abstract::Unauthorized
Public Class Methods
new(error = :unauthorized, description = nil, options = {})
click to toggle source
Calls superclass method
Rack::OAuth2::Server::Abstract::Error::new
# File lib/rack/oauth2/server/abstract/error.rb, line 44 def initialize(error = :unauthorized, description = nil, options = {}) @skip_www_authenticate = options[:skip_www_authenticate] super 401, error, description, options end