class Qiniu::MissingArgsError

Public Class Methods

new(missing_keys) click to toggle source
Calls superclass method
# File lib/qiniu/exceptions.rb, line 76
def initialize(missing_keys)
  key_list = missing_keys.map {|key| key.to_s}.join(' and the ')
  super("You did not provide both required args. Please provide the #{key_list}.")
end