Function
Formats and outputs a Dylan condition using format-out and passes control on to the next handler.
default-last-handler serious-condition next-handler => ()
A object of class <serious-condition>.
None.
common-extensions
common-extensions
A handler utility function defined on objects of class <serious-condition> that can be by bound dynamically around a computation via let handler or installed globally via last-handler-definer.
This function formats and outputs the Dylan condition serious-condition using format-out from the Format-Out library, and passes control on to the next handler.
This function is automatically installed as the last handler if your library uses the Functional-Extensions library.
The following form defines a dynamic handler around some body:
let handler <serious-condition> = default-last-handler;
while the following form installs a globally visible last-handler:
define last-handler <serious-condition> = default-last-handler;
win32-last-handler in the C FFI and Win32 library reference, under library win32-user and module win32-default-handler.