aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorscgilardi <scgilardi@gmail.com>2009-06-10 06:56:03 +0000
committerscgilardi <scgilardi@gmail.com>2009-06-10 06:56:03 +0000
commitdf39b397533dc3be5f3a95a3205e4becbbc87d6c (patch)
tree00905b4e3170e987ba2ecca626ea15f93f783fcb /src
parentaa77176d5b020b0156bfaa88be4e9f13325bc634 (diff)
condition: add example.clj
Diffstat (limited to 'src')
-rw-r--r--src/clojure/contrib/condition/example.clj28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/clojure/contrib/condition/example.clj b/src/clojure/contrib/condition/example.clj
new file mode 100644
index 00000000..25ff74b6
--- /dev/null
+++ b/src/clojure/contrib/condition/example.clj
@@ -0,0 +1,28 @@
+;; Copyright (c) Stephen C. Gilardi. All rights reserved. The use and
+;; distribution terms for this software are covered by the Eclipse Public
+;; License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can
+;; be found in the file epl-v10.html at the root of this distribution. By
+;; using this software in any fashion, you are agreeing to be bound by the
+;; terms of this license. You must not remove this notice, or any other,
+;; from this software.
+;;
+;; clojure.contrib.condition.example.clj
+;;
+;; scgilardi (gmail)
+;; Created 09 June 2009
+
+(ns clojure.contrib.condition.example
+ (:use clojure.contrib.condition))
+
+(defn func [x y]
+ (if (neg? x)
+ (raise :source ::Args :arg 'x :value x :message "shouldn't be negative")
+ (+ x y)))
+
+(defn main
+ []
+ (handler-case :source condition
+ (println (func 3 4))
+ (println (func -5 10))
+ (handle ::Args
+ (printf "Bad argument: %s\n" condition))))