diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-10-25 07:25:01 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-10-25 07:26:05 -0400 |
commit | d54995cad9ddf652cd2f7abb128d5d251f9454f1 (patch) | |
tree | 34c7b4676b4e3615a2a66980868b4d767c6867b6 /manuals/chickadee/The-Game-Loop.html | |
parent | bb44696ee1d8263b58976fec1bcd8e030f97f8e4 (diff) |
projects: Update chickadee for 0.9.0 release.
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> |