• exception handling

    From Jens Kallup@21:1/5 to All on Sat Dec 9 15:04:55 2023
    Hello,

    I dont understand exception handling in SBCL Common Lisp,

    How can I define one or more exceptions, and doing actions
    during one exception is raise.

    I found examples in the Internet, but they give only demo,
    not practise using.

    I would do this pseudo-code thing:

    (handle-exception (
    (progn (write-line "hello")
    (write-line (/ 3 0)))
    (handle-exception-occurence
    division-zero (write-line "error 1" )
    file-not-found (write-line "error 2 )))

    Is that possible in SBCL ?

    Jens

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Jens Kallup@21:1/5 to All on Sat Dec 9 16:45:18 2023
    Hello,

    I found informations on:

    https://gigamonkeys.com/book/beyond-exception-handling-conditions-and-restarts.html

    Jens

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)