[前][次][番号順一覧][スレッド一覧]

ruby-changes:35738

From: usa <ko1@a...>
Date: Mon, 6 Oct 2014 21:44:06 +0900 (JST)
Subject: [ruby-changes:35738] usa:r47820 (trunk): * error.c: update exception tree. [DOC]

usa	2014-10-06 21:43:51 +0900 (Mon, 06 Oct 2014)

  New Revision: 47820

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47820

  Log:
    * error.c: update exception tree. [DOC]
      reported by @hemge via twitter.

  Modified files:
    trunk/ChangeLog
    trunk/error.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 47819)
+++ ChangeLog	(revision 47820)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Mon Oct  6 21:43:03 2014  NAKAMURA Usaku  <usa@r...>
+
+	* error.c: update exception tree. [DOC]
+	  reported by @hemge via twitter.
+
 Mon Oct  6 18:43:03 2014  Rei Odaira  <Rei.Odaira@g...>
 
 	* configure.in: Fix typo. [Bug #9914]
Index: error.c
===================================================================
--- error.c	(revision 47819)
+++ error.c	(revision 47820)
@@ -1793,14 +1793,18 @@ syserr_eqq(VALUE self, VALUE exc) https://github.com/ruby/ruby/blob/trunk/error.c#L1793
  *    * LoadError
  *    * NotImplementedError
  *    * SyntaxError
+ *  * SecurityError
  *  * SignalException
  *    * Interrupt
  *  * StandardError -- default for +rescue+
  *    * ArgumentError
- *    * IndexError
- *      * StopIteration
+ *    * EncodingError
+ *    * FiberError
  *    * IOError
  *      * EOFError
+ *    * IndexError
+ *      * KeyError
+ *      * StopIteration
  *    * LocalJumpError
  *    * NameError
  *      * NoMethodError
@@ -1808,14 +1812,13 @@ syserr_eqq(VALUE self, VALUE exc) https://github.com/ruby/ruby/blob/trunk/error.c#L1812
  *      * FloatDomainError
  *    * RegexpError
  *    * RuntimeError -- default for +raise+
- *    * SecurityError
  *    * SystemCallError
  *      * Errno::*
- *    * SystemStackError
  *    * ThreadError
  *    * TypeError
  *    * ZeroDivisionError
  *  * SystemExit
+ *  * SystemStackError
  *  * fatal -- impossible to rescue
  */
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]