หากต้องการตรวจจับข้อยกเว้น JavaScript ใน Clojurescript ให้ลองใช้ข้อมูลโค้ดต่อไปนี้ -
(js/Error. "Oops") ;; throw error (throw (js/Error. "Error occurred!")) ;; catch error (try (throw (js/Error. "Erro occurred")) (catch js/Error e e)) ;; JavaScript allows to throw anything, but handle it with ClojureScript (try (throw (js/Error. "Error Occurred! ")) (catch :default e e))