class Shaf::Authenticator::Base::MissingParametersError

Public Class Methods

new(authenticator, *args) click to toggle source
Calls superclass method
# File lib/shaf/authenticator/base.rb, line 9
def initialize(authenticator, *args)
  super("Missing required parameters: [#{args.join(', ')}] for #{authenticator}")
end