diff options
Diffstat (limited to 'error-kit-api.html')
-rw-r--r-- | error-kit-api.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/error-kit-api.html b/error-kit-api.html index c3a9afb7..01763251 100644 --- a/error-kit-api.html +++ b/error-kit-api.html @@ -102,7 +102,7 @@ or API adjustments.</pre> Control can be passed to this 'continue' form from a 'raise' enclosed in this with-handler's dynamic scope, when this 'continue-name' is given to a 'continue' form.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/6dd2205627cd524894b1175da20ce9c5ac65aef7/src/clojure/contrib/error_kit.clj#L150" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/db7ac3aa9a5de29ac9c0107a21a790f90104ad3f/src/clojure/contrib/error_kit.clj#L150" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="error-kit/deferror">deferror</h2> @@ -111,7 +111,7 @@ given to a 'continue' form.</pre> (deferror name [parent-error?] doc-string? args-destruct-map & body) </pre> <pre id="var-docstr">Define a new error type</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/6dd2205627cd524894b1175da20ce9c5ac65aef7/src/clojure/contrib/error_kit.clj#L59" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/db7ac3aa9a5de29ac9c0107a21a790f90104ad3f/src/clojure/contrib/error_kit.clj#L59" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="error-kit/do-not-handle">do-not-handle</h2> @@ -122,7 +122,7 @@ given to a 'continue' form.</pre> not consider the error handled, but should continue searching for an appropriate 'handle' form. Allows finer-grain control over catching than just the error type.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/6dd2205627cd524894b1175da20ce9c5ac65aef7/src/clojure/contrib/error_kit.clj#L117" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/db7ac3aa9a5de29ac9c0107a21a790f90104ad3f/src/clojure/contrib/error_kit.clj#L117" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="error-kit/error">error</h2> @@ -130,7 +130,7 @@ than just the error type.</pre> <pre id="var-usage">Usage: (error details) </pre> <pre id="var-docstr">Base type for all error-kit errors</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/6dd2205627cd524894b1175da20ce9c5ac65aef7/src/clojure/contrib/error_kit.clj#L46" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/db7ac3aa9a5de29ac9c0107a21a790f90104ad3f/src/clojure/contrib/error_kit.clj#L46" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="error-kit/handle">handle</h2> @@ -146,7 +146,7 @@ be executed for regardless of the type of error raised. The body may return a value, in which case that will be the return value of the entire 'with-handler' form, or it may use any of the special return forms, 'do-not-handle', 'continue-with', or 'continue'.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/6dd2205627cd524894b1175da20ce9c5ac65aef7/src/clojure/contrib/error_kit.clj#L138" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/db7ac3aa9a5de29ac9c0107a21a790f90104ad3f/src/clojure/contrib/error_kit.clj#L138" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="error-kit/raise">raise</h2> @@ -154,7 +154,7 @@ return forms, 'do-not-handle', 'continue-with', or 'continue'.</pre> <pre id="var-usage">Usage: (raise err-name & args) </pre> <pre id="var-docstr">Raise an error of the type err-name, constructed with the given args</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/6dd2205627cd524894b1175da20ce9c5ac65aef7/src/clojure/contrib/error_kit.clj#L110" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/db7ac3aa9a5de29ac9c0107a21a790f90104ad3f/src/clojure/contrib/error_kit.clj#L110" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="error-kit/raise*">raise*</h2> @@ -163,7 +163,7 @@ return forms, 'do-not-handle', 'continue-with', or 'continue'.</pre> </pre> <pre id="var-docstr">Raise the given error object, best if created by an error constructor defined with deferror. See also 'raise' macro.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/6dd2205627cd524894b1175da20ce9c5ac65aef7/src/clojure/contrib/error_kit.clj#L86" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/db7ac3aa9a5de29ac9c0107a21a790f90104ad3f/src/clojure/contrib/error_kit.clj#L86" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="error-kit/throw-msg">throw-msg</h2> @@ -173,7 +173,7 @@ constructor defined with deferror. See also 'raise' macro.</pre> <pre id="var-docstr">Returns a function that throws a Java Exception with the given name. Useful to associate a new error-kit error type with a particular Java Exception class, via the :unhandled error key.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/6dd2205627cd524894b1175da20ce9c5ac65aef7/src/clojure/contrib/error_kit.clj#L39" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/db7ac3aa9a5de29ac9c0107a21a790f90104ad3f/src/clojure/contrib/error_kit.clj#L39" id="var-source">Source</a> </div><div id="var-entry"> <hr /> <h2 id="error-kit/with-handler">with-handler</h2> @@ -183,7 +183,7 @@ particular Java Exception class, via the :unhandled error key.</pre> <pre id="var-docstr">This is error-kit's dynamic scope form. The body will be executed in a dynamic context that includes all of the following 'handle' and 'bind-continue' forms.</pre> - <a href="http://github.com/richhickey/clojure-contrib/blob/6dd2205627cd524894b1175da20ce9c5ac65aef7/src/clojure/contrib/error_kit.clj#L163" id="var-source">Source</a> + <a href="http://github.com/richhickey/clojure-contrib/blob/db7ac3aa9a5de29ac9c0107a21a790f90104ad3f/src/clojure/contrib/error_kit.clj#L163" id="var-source">Source</a> </div> |