mirror of
https://github.com/ruby/ruby.git
synced 2025-08-16 05:59:00 +02:00
* error.c: fix wrong exception class name in rdoc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27994 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c3ebf85a81
commit
0344bece9f
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Mon May 24 23:04:41 2010 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* error.c: fix wrong exception class name in rdoc.
|
||||||
|
|
||||||
Mon May 24 19:00:34 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Mon May 24 19:00:34 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* parse.y (warn_balanced, parser_yylex): no warnings after closing
|
* parse.y (warn_balanced, parser_yylex): no warnings after closing
|
||||||
|
@ -918,7 +922,7 @@ Sat May 1 00:14:47 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
Fri Apr 30 22:46:27 2010 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
|
Fri Apr 30 22:46:27 2010 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
|
||||||
|
|
||||||
* math.c: Math::DomainError < StandardException [ruby-core:29855]
|
* math.c: Math::DomainError < StandardError [ruby-core:29855]
|
||||||
|
|
||||||
Fri Apr 30 21:40:36 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Fri Apr 30 21:40:36 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
|
4
error.c
4
error.c
|
@ -1231,7 +1231,7 @@ syserr_eqq(VALUE self, VALUE exc)
|
||||||
* ScriptError is the superclass for errors raised when a script
|
* ScriptError is the superclass for errors raised when a script
|
||||||
* can not be executed because of a +LoadError+,
|
* can not be executed because of a +LoadError+,
|
||||||
* +NotImplementedError+ or a +SyntaxError+. Note these type of
|
* +NotImplementedError+ or a +SyntaxError+. Note these type of
|
||||||
* +ScriptErrors+ are not +StandardExceptions+ and will not be
|
* +ScriptErrors+ are not +StandardError+ and will not be
|
||||||
* rescued unless it is specified explicitly (or its ancestor
|
* rescued unless it is specified explicitly (or its ancestor
|
||||||
* +Exception+).
|
* +Exception+).
|
||||||
*/
|
*/
|
||||||
|
@ -1381,7 +1381,7 @@ syserr_eqq(VALUE self, VALUE exc)
|
||||||
* objects carry information about the exception---its type (the
|
* objects carry information about the exception---its type (the
|
||||||
* exception's class name), an optional descriptive string, and
|
* exception's class name), an optional descriptive string, and
|
||||||
* optional traceback information. Programs may subclass
|
* optional traceback information. Programs may subclass
|
||||||
* <code>Exception</code>, or more typically <code>StandardException</code>
|
* <code>Exception</code>, or more typically <code>StandardError</code>
|
||||||
* to provide custom classes and add additional information.
|
* to provide custom classes and add additional information.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue