diff options
Diffstat (limited to 'src/clojure')
-rw-r--r-- | src/clojure/contrib/except.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/except.clj b/src/clojure/contrib/except.clj index 44f8c4d8..ecf77318 100644 --- a/src/clojure/contrib/except.clj +++ b/src/clojure/contrib/except.clj @@ -69,7 +69,7 @@ (cons Exception args)) ctor-args (into-array (if fmt [(apply format fmt fmt-args)] [])) throwable (Reflector/invokeConstructor class ctor-args) - our-prefix "clojure.contrib.except.throwable" + our-prefix "clojure.contrib.except$throwable" not-us? #(not (.startsWith (.getClassName %) our-prefix)) raw-trace (.getStackTrace throwable) edited-trace (into-array StackTraceElement |