Liking cljdoc? Tell your friends :D

eva.query.datalog.error


bindingscljmacro

(bindings detail-str data)
(bindings detail-str data cause)

Records this raise-site under :query.bindings/insufficient in eva.error/eva-error-form, and expands into the equivalent of:

(error :query.bindings/insufficient (str "Insufficient bindings: " detail-str) data cause)

Records this raise-site under :query.bindings/insufficient in eva.error/eva-error-form, and expands into the equivalent of:

(error :query.bindings/insufficient
       (str "Insufficient bindings: " detail-str)
       data
       cause)

sourceraw docstring

evaluable-errorcljmacro

(evaluable-error detail-str data)
(evaluable-error detail-str data cause)

Records this raise-site under :query.evaluation/function-error in eva.error/eva-error-form, and expands into the equivalent of:

(error :query.evaluation/function-error (str "Error thrown in function during query evaluation: " detail-str) data cause)

Records this raise-site under :query.evaluation/function-error in eva.error/eva-error-form, and expands into the equivalent of:

(error :query.evaluation/function-error
       (str "Error thrown in function during query evaluation: " detail-str)
       data
       cause)

sourceraw docstring

raise-bindingscljmacro

(raise-bindings detail-str data)
(raise-bindings detail-str data cause)

Records this raise-site under :query.bindings/insufficient in recide, and expands into:

(raise :query.bindings/insufficient (str "Insufficient bindings: " detail-str) data cause)

Records this raise-site under :query.bindings/insufficient in recide, and expands into:

(raise :query.bindings/insufficient
       (str "Insufficient bindings: " detail-str)
       data
       cause)

sourceraw docstring

raise-evaluable-errorcljmacro

(raise-evaluable-error detail-str data)
(raise-evaluable-error detail-str data cause)

Records this raise-site under :query.evaluation/function-error in recide, and expands into:

(raise :query.evaluation/function-error (str "Error thrown in function during query evaluation: " detail-str) data cause)

Records this raise-site under :query.evaluation/function-error in recide, and expands into:

(raise :query.evaluation/function-error
       (str "Error thrown in function during query evaluation: " detail-str)
       data
       cause)

sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close