特定のコンディションだけを捕捉する - lisp-cookbook-ja/common-lisp GitHub Wiki

コンディション

(handler-case (error "Error!")
  (simple-error () "no error"))
; => "no error"