Exception: Stytch::TokenMissingScopeError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/stytch/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(scope) ⇒ TokenMissingScopeError

Returns a new instance of TokenMissingScopeError.



33
34
35
36
# File 'lib/stytch/errors.rb', line 33

def initialize(scope)
  msg = "Missing required scope #{scope}"
  super(msg)
end