@@ -38,22 +38,26 @@ If you want to direct the printing to somewhere other than `*out*`, either use `
The library also offers an API for programatically 'parsing' exceptions. This API is used internal for `pst` and can be used to e.g. improve development tools. Try for example:
- => (use '(clj-stacktrace core))
- => (try
- ("nofn")
- (catch Exception e
- (parse-exception e)))
+```clj
+(use '(clj-stacktrace core))
+(try
+ ("nofn")
+ (catch Exception e
+ (parse-exception e)))
+```
If you use Leiningen, you can install clj-stacktrace on a per-user basis:
0 comments on commit
2e3db37