class AccessTokenAgent::UnsupportedTokenTypeError
Public Class Methods
new(token_type)
click to toggle source
Calls superclass method
# File lib/access_token_agent/unsupported_token_type_error.rb, line 3 def initialize(token_type) super("Expected token_type to be 'bearer', but was '#{token_type}'.") end