I wish to throw an exception and have the following:

(throw "Some text")

However it seems to be ignored.

link|improve this question

2  
throw throws instances of Java Throwable. Does (throw (Exception. "Some text")) work? – dfan Mar 28 '11 at 13:54
when I try (throw "Some text") I get a ClassClassException because String cannot be cast to Throwable. So it's odd that the throw is being "ignored" in your case.... – mikera Mar 28 '11 at 16:25
feedback

2 Answers

up vote 14 down vote accepted

You need to wrap your string in a Throwable:

(throw (Throwable. "Some text"))

or

(throw (Exception. "Some text"))

You can set up a try/catch/finally block as well:

(defn myDivision [x y]
  (try
    (/ x y)
    (catch ArithmeticException e
      (println "Exception message: " (.getMessage e)))
    (finally 
      (println "Done."))))

REPL session:

user=> (myDivision 4 2)
Done.
2
user=> (myDivision 4 0)
Exception message:  Divide by zero
Done.
nil
link|improve this answer
Brilliant answer. Thanks! – Zubair Mar 28 '11 at 19:45
feedback

clojure.contrib.condition provides a Clojure-friendly means of handling exceptions. You can raise conditons with causes. Each condition can have its own handler.

There are a number of examples in the source on github.

It's quite flexible, in that you can provide your own key, value pairs when raising and then decide what to do in your handler based on the keys/values.

E.g. (mangling the example code):

(if (something-wrong x)
  (raise :type :something-is-wrong :arg 'x :value x))

You can then have a handler for :something-is-wrong:

(handler-case :type
  (do-non-error-condition-stuff)
  (handle :something-is-wrong
    (print-stack-trace *condition*)))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.