Method: (HANDLE-REQUEST-ERROR INEXISTENT-ACTION-ID T)

Source

(defmethod handle-request-error ((err inexistent-action-id) backtrace)
  (declare (ignore backtrace))
  (with-error-page (:title (strcat "Inexistent Action Id: " (slot-value err 'action-id)))
    (<:p "No action associated with the action-id "
         (<:tt (<:as-html (slot-value err 'action-id))))))
Source Context