aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-24 04:00:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-12-24 04:00:27 +0000
commit5b4ff7d6f9fe12af5a14c09c1509490a4c6a318b (patch)
treec849294f91724575d06bd673db47061d56b7d80d
parent01195a202cb9fcc6ddb6cf793868e4c7d85292dc (diff)
downloadruby-5b4ff7d6f9fe12af5a14c09c1509490a4c6a318b.tar.gz
downloader.rb: fix exception arguments
* tool/downloader.rb (Downloader.download): fix the exception to re-raise. initialize methods of subclasses of Exception may have different parameters. [ruby-core:67086] [Bug #10639] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48963 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--tool/downloader.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6faa85bc1f..afc8afbe76 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Dec 24 13:00:24 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * tool/downloader.rb (Downloader.download): fix the exception to
+ re-raise. initialize methods of subclasses of Exception may
+ have different parameters. [ruby-core:67086] [Bug #10639]
+
Wed Dec 24 12:16:19 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ruby.h (rb_data_type_t): revert r48647 and revise parent member.
diff --git a/tool/downloader.rb b/tool/downloader.rb
index cb7ba8213e..e1071fcd16 100644
--- a/tool/downloader.rb
+++ b/tool/downloader.rb
@@ -107,7 +107,7 @@ class Downloader
end
true
rescue => e
- raise e.class, "failed to download #{name}\n#{e.message}: #{url}", e.backtrace
+ raise "failed to download #{name}\n#{e.message}: #{url}"
end
end