diff options
Diffstat (limited to 'manuals/chickadee/The-Game-Loop.html')
-rw-r--r-- | manuals/chickadee/The-Game-Loop.html | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/manuals/chickadee/The-Game-Loop.html b/manuals/chickadee/The-Game-Loop.html index d18ad0d..7d7acfb 100644 --- a/manuals/chickadee/The-Game-Loop.html +++ b/manuals/chickadee/The-Game-Loop.html @@ -277,18 +277,16 @@ values are: </li></ol> -</li><li> <var>error</var>: Called with three arguments when an error occurs: +</li><li> <var>error</var>: Called with two arguments when an error occurs: <ol> -<li> <var>stack</var>: The call stack at the point of error. +<li> <var>exception</var>: The exception object. -</li><li> <var>key</var>: The exception key. - -</li><li> <var>args</var>: The arguments thrown with the exception. +</li><li> <var>stack</var>: The call stack at the point of the exception. </li></ol> -<p>The default behavior is to re-throw the error. +<p>If no error handler is specified, exceptions will simply be re-raised. </p> </li></ul> |