class Shaf::Authenticator::Base::InvalidParameterError

Public Class Methods

new(authenticator, *args) click to toggle source
Calls superclass method
# File lib/shaf/authenticator/base.rb, line 15
def initialize(authenticator, *args)
  str = args.map { |key, value| "#{key}: #{value}" }.join(', ')
  super("Invalid parameters for #{authenticator}: #{str}")
end