lib/slack/web/api/endpoints/calls_participants.rb in slack-ruby-client-1.1.0 vs lib/slack/web/api/endpoints/calls_participants.rb in slack-ruby-client-2.0.0

- old
+ new

@@ -14,12 +14,12 @@ # @option options [array] :users # The list of users to add as participants in the Call. Read more on how to specify users here. # @see https://api.slack.com/methods/calls.participants.add # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/calls.participants/calls.participants.add.json def calls_participants_add(options = {}) - throw ArgumentError.new('Required arguments :id missing') if options[:id].nil? - throw ArgumentError.new('Required arguments :users missing') if options[:users].nil? + raise ArgumentError, 'Required arguments :id missing' if options[:id].nil? + raise ArgumentError, 'Required arguments :users missing' if options[:users].nil? post('calls.participants.add', options) end # # Registers participants removed from a Call. @@ -29,11 +29,11 @@ # @option options [array] :users # The list of users to remove as participants in the Call. Read more on how to specify users here. # @see https://api.slack.com/methods/calls.participants.remove # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/calls.participants/calls.participants.remove.json def calls_participants_remove(options = {}) - throw ArgumentError.new('Required arguments :id missing') if options[:id].nil? - throw ArgumentError.new('Required arguments :users missing') if options[:users].nil? + raise ArgumentError, 'Required arguments :id missing' if options[:id].nil? + raise ArgumentError, 'Required arguments :users missing' if options[:users].nil? post('calls.participants.remove', options) end end end end