Liking cljdoc? Tell your friends :D

flowgraph.error


errorcljmacro

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

Records this raise-site under :flowgraph/error in recide.impl/default-error-definition, and expands into the equivalent of:

(error :flowgraph/error (str "Flowgraph encountered an error: " detail-str) data cause)

Records this raise-site under :flowgraph/error in recide.impl/default-error-definition, and expands into the equivalent of:

(error :flowgraph/error
       (str "Flowgraph encountered an error: " detail-str)
       data
       cause)

sourceraw docstring

queue-errcljmacro

(queue-err subtype detail-str data)
(queue-err subtype detail-str data cause)

Records this raise-site under :flowgraph.queue/<subtype> in recide.impl/default-error-definition, and expands into the equivalent of:

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

{:access {:required #{:method}, :generic-str "Illegal access"}, :unsupported {:required #{:method :class}, :generic-str "Unsupported operation"}}

Records this raise-site under :flowgraph.queue/<subtype> in recide.impl/default-error-definition, and expands into the
          equivalent of:

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

   {:access {:required #{:method},
            :generic-str "Illegal access"},
   :unsupported {:required #{:method :class},
                 :generic-str "Unsupported operation"}}
sourceraw docstring

raise-errorcljmacro

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

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

(raise :flowgraph/error (str "Flowgraph encountered an error: " detail-str) data cause)

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

(raise :flowgraph/error
       (str "Flowgraph encountered an error: " detail-str)
       data
       cause)

sourceraw docstring

raise-queue-errcljmacro

(raise-queue-err subtype detail-str data)
(raise-queue-err subtype detail-str data cause)

Records this raise-site under :flowgraph.queue/<subtype> in recide.impl/default-error-definition and expands into:

   (raise :flowgraph.queue/<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:

{:access {:required #{:method}, :generic-str "Illegal access"}, :unsupported {:required #{:method :class}, :generic-str "Unsupported operation"}}

Records this raise-site under :flowgraph.queue/<subtype> in recide.impl/default-error-definition and expands into:

       (raise :flowgraph.queue/<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:

   {:access {:required #{:method},
            :generic-str "Illegal access"},
   :unsupported {:required #{:method :class},
                 :generic-str "Unsupported operation"}}
sourceraw docstring

raise-timeoutcljmacro

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

Records this raise-site under :flowgraph/timeout in recide, and expands into:

(raise :flowgraph/timeout (str "Flowgraph timed out: " detail-str) data cause)

Records this raise-site under :flowgraph/timeout in recide, and expands into:

(raise :flowgraph/timeout
       (str "Flowgraph timed out: " detail-str)
       data
       cause)

sourceraw docstring

timeoutcljmacro

(timeout detail-str data)
(timeout detail-str data cause)

Records this raise-site under :flowgraph/timeout in recide.impl/default-error-definition, and expands into the equivalent of:

(error :flowgraph/timeout (str "Flowgraph timed out: " detail-str) data cause)

Records this raise-site under :flowgraph/timeout in recide.impl/default-error-definition, and expands into the equivalent of:

(error :flowgraph/timeout
       (str "Flowgraph timed out: " detail-str)
       data
       cause)

sourceraw docstring

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

× close