Liking cljdoc? Tell your friends :D

eva.v2.datastructures.bbtree.logic.v0.error


fressian-read-errcljmacro

(fressian-read-err subtype detail-str data)
(fressian-read-err subtype detail-str data cause)

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

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

{:bbtree-node {:required #{:handler-chain}, :generic-str "Unable to deserialize tree node"}, :bbtree-pointer {:required #{:handler-chain}, :generic-str "Unable to deserialize tree pointer"}, :bbtree-buffer {:required #{:handler-chain}, :generic-str "Unable to deserialize node buffer"}, :bbtree-message {:required #{:handler-chain}, :generic-str "Unable to deserialize bbtree message"}}

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

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

   {:bbtree-node {:required #{:handler-chain},
                 :generic-str "Unable to deserialize tree node"},
   :bbtree-pointer {:required #{:handler-chain},
                    :generic-str "Unable to deserialize tree pointer"},
   :bbtree-buffer {:required #{:handler-chain},
                   :generic-str "Unable to deserialize node buffer"},
   :bbtree-message {:required #{:handler-chain},
                    :generic-str "Unable to deserialize bbtree message"}}
sourceraw docstring

persistcljmacro

(persist subtype detail-str data)
(persist subtype detail-str data cause)

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

   (error (str "<subtype-generic-str>: " detail-str)
          :bbtree.faulty-persist/<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:

{:local-only {:required #{}, :generic-str "This copy cannot be persisted"}}

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

       (error (str "<subtype-generic-str>: " detail-str)
              :bbtree.faulty-persist/<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:

   {:local-only {:required #{},
                :generic-str "This copy cannot be persisted"}}
sourceraw docstring

raise-fressian-read-errcljmacro

(raise-fressian-read-err subtype detail-str data)
(raise-fressian-read-err subtype detail-str data cause)

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

   (raise :fressian.unreadable/<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:

{:bbtree-node {:required #{:handler-chain}, :generic-str "Unable to deserialize tree node"}, :bbtree-pointer {:required #{:handler-chain}, :generic-str "Unable to deserialize tree pointer"}, :bbtree-buffer {:required #{:handler-chain}, :generic-str "Unable to deserialize node buffer"}, :bbtree-message {:required #{:handler-chain}, :generic-str "Unable to deserialize bbtree message"}}

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

       (raise :fressian.unreadable/<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:

   {:bbtree-node {:required #{:handler-chain},
                 :generic-str "Unable to deserialize tree node"},
   :bbtree-pointer {:required #{:handler-chain},
                    :generic-str "Unable to deserialize tree pointer"},
   :bbtree-buffer {:required #{:handler-chain},
                   :generic-str "Unable to deserialize node buffer"},
   :bbtree-message {:required #{:handler-chain},
                    :generic-str "Unable to deserialize bbtree message"}}
sourceraw docstring

raise-persistcljmacro

(raise-persist subtype detail-str data)
(raise-persist subtype detail-str data cause)

Records this raise-site under :bbtree.faulty-persist/<subtype> in eva.error/eva-error-form and expands into:

   (raise :bbtree.faulty-persist/<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:

{:local-only {:required #{}, :generic-str "This copy cannot be persisted"}}

Records this raise-site under :bbtree.faulty-persist/<subtype> in eva.error/eva-error-form and expands into:

       (raise :bbtree.faulty-persist/<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:

   {:local-only {:required #{},
                :generic-str "This copy cannot be persisted"}}
sourceraw docstring

raise-safetycljmacro

(raise-safety subtype detail-str data)
(raise-safety subtype detail-str data cause)

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

   (raise :bbtree.safety/<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:

{:not-found {:required #{}, :generic-str "A pre-existing buffered btree was expected but not found"}, :no-overwrite {:required #{}, :generic-str "Attempting to overwrite newer version of buffered btree"}, :unpersisted-changes {:required #{}, :generic-str "This operation cannot be called on a tree with unpersisted changes"}}

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

       (raise :bbtree.safety/<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:

   {:not-found {:required #{},
               :generic-str "A pre-existing buffered btree was expected but not found"},
   :no-overwrite {:required #{},
                  :generic-str "Attempting to overwrite newer version of buffered btree"},
   :unpersisted-changes {:required #{},
                         :generic-str "This operation cannot be called on a tree with unpersisted changes"}}
sourceraw docstring

safetycljmacro

(safety subtype detail-str data)
(safety subtype detail-str data cause)

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

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

{:not-found {:required #{}, :generic-str "A pre-existing buffered btree was expected but not found"}, :no-overwrite {:required #{}, :generic-str "Attempting to overwrite newer version of buffered btree"}, :unpersisted-changes {:required #{}, :generic-str "This operation cannot be called on a tree with unpersisted changes"}}

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

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

   {:not-found {:required #{},
               :generic-str "A pre-existing buffered btree was expected but not found"},
   :no-overwrite {:required #{},
                  :generic-str "Attempting to overwrite newer version of buffered btree"},
   :unpersisted-changes {:required #{},
                         :generic-str "This operation cannot be called on a tree with unpersisted changes"}}
sourceraw docstring

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

× close