(builtin subtype detail-str data)
(builtin subtype detail-str data cause)
Records this raise-site under :query.builtins/<subtype> in eva.error/eva-error-form, and expands into the equivalent of:
(error (str "<subtype-generic-str>: " detail-str)
:query.builtins/<subtype>
cause)
The following map shows, for each subtype, what keywords are required in the data map, and what the generic portion of the string will be:
{:function {:required #{}, :generic-str "An error occurred during the execution of a built-in function"}, :aggregate {:required #{}, :generic-str "An error occurred during the execution of a built-in aggregate function"}}
Records this raise-site under :query.builtins/<subtype> in eva.error/eva-error-form, and expands into the equivalent of: (error (str "<subtype-generic-str>: " detail-str) :query.builtins/<subtype> cause) The following map shows, for each subtype, what keywords are required in the data map, and what the generic portion of the string will be: {:function {:required #{}, :generic-str "An error occurred during the execution of a built-in function"}, :aggregate {:required #{}, :generic-str "An error occurred during the execution of a built-in aggregate function"}}
(parse-err subtype detail-str data)
(parse-err subtype detail-str data cause)
Records this raise-site under :query.invalid/<subtype> in eva.error/eva-error-form, and expands into the equivalent of:
(error (str "<subtype-generic-str>: " detail-str)
:query.invalid/<subtype>
cause)
The following map shows, for each subtype, what keywords are required in the data map, and what the generic portion of the string will be:
{:find-spec {:required #{:expression}, :generic-str "Invalid find spec"}, :inputs {:required #{:expression :invalid}, :generic-str "Invalid inputs"}, :with {:required #{:expression :invalid}, :generic-str "Invalid with-clause"}, :clause {:required #{:expression}, :generic-str "Invalid clause"}, :or-clause {:required #{:expression :invalid}, :generic-str "Invalid or-clause"}, :or-join {:required #{:expression :invalid}, :generic-str "Invalid or-join-clause"}, :where {:required #{:expression :invalid}, :generic-str "Invalid where-clause"}, :query {:required #{:expression}, :generic-str "Invalid query form"}}
Records this raise-site under :query.invalid/<subtype> in eva.error/eva-error-form, and expands into the equivalent of: (error (str "<subtype-generic-str>: " detail-str) :query.invalid/<subtype> cause) The following map shows, for each subtype, what keywords are required in the data map, and what the generic portion of the string will be: {:find-spec {:required #{:expression}, :generic-str "Invalid find spec"}, :inputs {:required #{:expression :invalid}, :generic-str "Invalid inputs"}, :with {:required #{:expression :invalid}, :generic-str "Invalid with-clause"}, :clause {:required #{:expression}, :generic-str "Invalid clause"}, :or-clause {:required #{:expression :invalid}, :generic-str "Invalid or-clause"}, :or-join {:required #{:expression :invalid}, :generic-str "Invalid or-join-clause"}, :where {:required #{:expression :invalid}, :generic-str "Invalid where-clause"}, :query {:required #{:expression}, :generic-str "Invalid query form"}}
(raise-builtin subtype detail-str data)
(raise-builtin subtype detail-str data cause)
Records this raise-site under :query.builtins/<subtype> in eva.error/eva-error-form and expands into:
(raise :query.builtins/<subtype>
(str "<subtype-generic-str>: " detail-str)
data
cause)
The following map shows, for each subtype, what keywords are required in the data map, and what the generic portion of the string will be:
{:function {:required #{}, :generic-str "An error occurred during the execution of a built-in function"}, :aggregate {:required #{}, :generic-str "An error occurred during the execution of a built-in aggregate function"}}
Records this raise-site under :query.builtins/<subtype> in eva.error/eva-error-form and expands into: (raise :query.builtins/<subtype> (str "<subtype-generic-str>: " detail-str) data cause) The following map shows, for each subtype, what keywords are required in the data map, and what the generic portion of the string will be: {:function {:required #{}, :generic-str "An error occurred during the execution of a built-in function"}, :aggregate {:required #{}, :generic-str "An error occurred during the execution of a built-in aggregate function"}}
(raise-parse-err subtype detail-str data)
(raise-parse-err subtype detail-str data cause)
Records this raise-site under :query.invalid/<subtype> in eva.error/eva-error-form and expands into:
(raise :query.invalid/<subtype>
(str "<subtype-generic-str>: " detail-str)
data
cause)
The following map shows, for each subtype, what keywords are required in the data map, and what the generic portion of the string will be:
{:find-spec {:required #{:expression}, :generic-str "Invalid find spec"}, :inputs {:required #{:expression :invalid}, :generic-str "Invalid inputs"}, :with {:required #{:expression :invalid}, :generic-str "Invalid with-clause"}, :clause {:required #{:expression}, :generic-str "Invalid clause"}, :or-clause {:required #{:expression :invalid}, :generic-str "Invalid or-clause"}, :or-join {:required #{:expression :invalid}, :generic-str "Invalid or-join-clause"}, :where {:required #{:expression :invalid}, :generic-str "Invalid where-clause"}, :query {:required #{:expression}, :generic-str "Invalid query form"}}
Records this raise-site under :query.invalid/<subtype> in eva.error/eva-error-form and expands into: (raise :query.invalid/<subtype> (str "<subtype-generic-str>: " detail-str) data cause) The following map shows, for each subtype, what keywords are required in the data map, and what the generic portion of the string will be: {:find-spec {:required #{:expression}, :generic-str "Invalid find spec"}, :inputs {:required #{:expression :invalid}, :generic-str "Invalid inputs"}, :with {:required #{:expression :invalid}, :generic-str "Invalid with-clause"}, :clause {:required #{:expression}, :generic-str "Invalid clause"}, :or-clause {:required #{:expression :invalid}, :generic-str "Invalid or-clause"}, :or-join {:required #{:expression :invalid}, :generic-str "Invalid or-join-clause"}, :where {:required #{:expression :invalid}, :generic-str "Invalid where-clause"}, :query {:required #{:expression}, :generic-str "Invalid query form"}}
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close