Liking cljdoc? Tell your friends :D

eva.query.dialect.translation.error


edb-errorcljmacro

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

Records this raise-site under :query.inputs/invalid-data-source in eva.error/eva-error-form, and expands into the equivalent of:

    (error :query.inputs/invalid-data-source
           (str "Invalid data source: " detail-str)
           data
           cause)

The following keys are required in the data-map: #{:src-var}

Records this raise-site under :query.inputs/invalid-data-source in eva.error/eva-error-form, and expands into the equivalent of:

        (error :query.inputs/invalid-data-source
               (str "Invalid data source: " detail-str)
               data
               cause)

 The following keys are required in the data-map:
#{:src-var}
sourceraw docstring

raise-edb-errorcljmacro

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

Records this raise-site under :query.inputs/invalid-data-source in recide, and expands into:

    (raise :query.inputs/invalid-data-source
           (str "Invalid data source: " detail-str)
           data
           cause)

The following keys are required in the data-map: #{:src-var}

Records this raise-site under :query.inputs/invalid-data-source in recide, and expands into:

        (raise :query.inputs/invalid-data-source
               (str "Invalid data source: " detail-str)
               data
               cause)

 The following keys are required in the data-map:
#{:src-var}
sourceraw docstring

raise-translation-errorcljmacro

(raise-translation-error subtype detail-str data)
(raise-translation-error subtype detail-str data cause)

Records this raise-site under :query.translation/<subtype> in eva.error/eva-error-form and expands into:

   (raise :query.translation/<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:

{:invalid-form {:required #{}, :generic-str "Invalid query form"}, :unrecognized-clause {:required #{}, :generic-str "Unrecognized clause type"}, :unknown-predicate {:required #{:symbol}, :generic-str "Unknown predicate symbol"}, :unresolved-sym {:required #{:fn-sym}, :generic-str "Unable to resolve symbol"}}

Records this raise-site under :query.translation/<subtype> in eva.error/eva-error-form and expands into:

       (raise :query.translation/<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:

   {:invalid-form {:required #{},
                  :generic-str "Invalid query form"},
   :unrecognized-clause {:required #{},
                         :generic-str "Unrecognized clause type"},
   :unknown-predicate {:required #{:symbol},
                       :generic-str "Unknown predicate symbol"},
   :unresolved-sym {:required #{:fn-sym},
                    :generic-str "Unable to resolve symbol"}}
sourceraw docstring

translation-errorcljmacro

(translation-error subtype detail-str data)
(translation-error subtype detail-str data cause)

Records this raise-site under :query.translation/<subtype> in eva.error/eva-error-form, and expands into the equivalent of:

   (error (str "<subtype-generic-str>: " detail-str)
          :query.translation/<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:

{:invalid-form {:required #{}, :generic-str "Invalid query form"}, :unrecognized-clause {:required #{}, :generic-str "Unrecognized clause type"}, :unknown-predicate {:required #{:symbol}, :generic-str "Unknown predicate symbol"}, :unresolved-sym {:required #{:fn-sym}, :generic-str "Unable to resolve symbol"}}

Records this raise-site under :query.translation/<subtype> in eva.error/eva-error-form, and expands into the
          equivalent of:

       (error (str "<subtype-generic-str>: " detail-str)
              :query.translation/<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:

   {:invalid-form {:required #{},
                  :generic-str "Invalid query form"},
   :unrecognized-clause {:required #{},
                         :generic-str "Unrecognized clause type"},
   :unknown-predicate {:required #{:symbol},
                       :generic-str "Unknown predicate symbol"},
   :unresolved-sym {:required #{:fn-sym},
                    :generic-str "Unable to resolve symbol"}}
sourceraw docstring

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

× close