1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* error.c: update exception tree. [DOC]

reported by @hemge via twitter.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47820 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2014-10-06 12:43:51 +00:00
parent 01a7a62d2b
commit 8474ebad8a
2 changed files with 12 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Mon Oct 6 21:43:03 2014 NAKAMURA Usaku <usa@ruby-lang.org>
* error.c: update exception tree. [DOC]
reported by @hemge via twitter.
Mon Oct 6 18:43:03 2014 Rei Odaira <Rei.Odaira@gmail.com> Mon Oct 6 18:43:03 2014 Rei Odaira <Rei.Odaira@gmail.com>
* configure.in: Fix typo. [Bug #9914] * configure.in: Fix typo. [Bug #9914]

11
error.c
View file

@ -1793,14 +1793,18 @@ syserr_eqq(VALUE self, VALUE exc)
* * LoadError * * LoadError
* * NotImplementedError * * NotImplementedError
* * SyntaxError * * SyntaxError
* * SecurityError
* * SignalException * * SignalException
* * Interrupt * * Interrupt
* * StandardError -- default for +rescue+ * * StandardError -- default for +rescue+
* * ArgumentError * * ArgumentError
* * IndexError * * EncodingError
* * StopIteration * * FiberError
* * IOError * * IOError
* * EOFError * * EOFError
* * IndexError
* * KeyError
* * StopIteration
* * LocalJumpError * * LocalJumpError
* * NameError * * NameError
* * NoMethodError * * NoMethodError
@ -1808,14 +1812,13 @@ syserr_eqq(VALUE self, VALUE exc)
* * FloatDomainError * * FloatDomainError
* * RegexpError * * RegexpError
* * RuntimeError -- default for +raise+ * * RuntimeError -- default for +raise+
* * SecurityError
* * SystemCallError * * SystemCallError
* * Errno::* * * Errno::*
* * SystemStackError
* * ThreadError * * ThreadError
* * TypeError * * TypeError
* * ZeroDivisionError * * ZeroDivisionError
* * SystemExit * * SystemExit
* * SystemStackError
* * fatal -- impossible to rescue * * fatal -- impossible to rescue
*/ */