Liking cljdoc? Tell your friends :D

eva.query.dialect.pull.error


raise-syntax-errorcljmacro

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

Records this raise-site under :pull/syntax-error in recide, and expands into:

    (raise :pull/syntax-error
           (str "Invalid pull syntax: " detail-str)
           data
           cause)

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

Records this raise-site under :pull/syntax-error in recide, and expands into:

        (raise :pull/syntax-error
               (str "Invalid pull syntax: " detail-str)
               data
               cause)

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

syntax-errorcljmacro

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

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

    (error :pull/syntax-error
           (str "Invalid pull syntax: " detail-str)
           data
           cause)

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

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

        (error :pull/syntax-error
               (str "Invalid pull syntax: " detail-str)
               data
               cause)

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

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

× close