We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If an error was encountered, Curl::Multi.download does an
ensure # ... raise errors unless errors.empty? end
However errors is an array and ruby cannot raise an array of errors:
2.2.3 :001 > raise StandardError.new StandardError: StandardError from (irb):1 from /home/sr/.rvm/rubies/ruby-2.2.3/bin/irb:11:in `<main>' 2.2.3 :002 > raise [ StandardError.new, StandardError.new ] TypeError: exception class/object expected from (irb):2:in `raise' from (irb):2 from /home/sr/.rvm/rubies/ruby-2.2.3/bin/irb:11:in `<main>'
The text was updated successfully, but these errors were encountered:
raise downloaderror object resolving #269
f6ce37b
No branches or pull requests
If an error was encountered, Curl::Multi.download does an
However errors is an array and ruby cannot raise an array of errors:
The text was updated successfully, but these errors were encountered: