ক্লোজুরস্ক্রিপ্টে জাভাস্ক্রিপ্ট ব্যতিক্রম ধরতে, নিম্নলিখিত কোড স্নিপেট চেষ্টা করুন -
(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))