summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-22 03:33:42 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-22 03:33:42 +0000
commita1fb880f1772f4a70dcd01e36ee0f150936f5fbe (patch)
tree78a89ce08c33e3fd9a81d37f2967eaf82eb7edb7
parent24294c7d60f4d90eeaf08b2ad68a61621a5dd654 (diff)
Add KeyError, NameError and NoMethodError changes
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62521 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--NEWS12
1 files changed, 12 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 78339bc735..27f181a8c8 100644
--- a/NEWS
+++ b/NEWS
@@ -35,6 +35,18 @@ with all sufficient information, see the ChangeLog file or Redmine
* Kernel.#system takes :exception option to raise an exception on failure. [Feature #14386]
+* KeyError
+
+ * KeyError#initialize accepts :receiver and :key options to set receiver and key in Ruby code. [Feature #14313]
+
+* NameError
+
+ * NameError#initialize accepts :receiver option to set receiver in Ruby code. [Feature #14313]
+
+* NoMethodError
+
+ * NoMethodError#initialize accepts :receiver option to set receiver in Ruby code. [Feature #14313]
+
* Proc
* Proc#call doesn't change $SAFE any more. [Feature #14250]