aboutsummaryrefslogtreecommitdiffstats
path: root/error.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-06 12:43:51 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-06 12:43:51 +0000
commit8474ebad8a4abb4c4b5ae7ecc5f5c7648763d2d3 (patch)
tree086c8a03fc1f6e1d909a13764815d2c05a275e27 /error.c
parent01a7a62d2b97be0dd8c7f1003207a5ae7c6613a8 (diff)
downloadruby-8474ebad8a4abb4c4b5ae7ecc5f5c7648763d2d3.tar.gz
* 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
Diffstat (limited to 'error.c')
-rw-r--r--error.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/error.c b/error.c
index d084bb3e8a..8b5d9a15fb 100644
--- a/error.c
+++ b/error.c
@@ -1793,14 +1793,18 @@ syserr_eqq(VALUE self, VALUE exc)
* * 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)
* * FloatDomainError
* * RegexpError
* * RuntimeError -- default for +raise+
- * * SecurityError
* * SystemCallError
* * Errno::*
- * * SystemStackError
* * ThreadError
* * TypeError
* * ZeroDivisionError
* * SystemExit
+ * * SystemStackError
* * fatal -- impossible to rescue
*/