Method: (render-error werror)

Documentation

Outputs the html for a wisp condition.

Source

(defmethod render-error ((werror werror))
  "Outputs the html for a wisp condition."
  (render-html (:html (:title "Error. " werror)
		      (:body (:div "Unhandled error: " werror)))))
Source Context