(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:
{:vector {:required #{:handler-chain}, :generic-str "Unable to deserialize vector"}, :list {:required #{:handler-chain}, :generic-str "Unable to deserialize list"}, :set {:required #{:handler-chain}, :generic-str "Unable to deserialize set"}, :var {:required #{:handler-chain}, :generic-str "Unable to resolve var"}, :byte-string {:required #{:handler-chain}, :generic-str "Unable to deserialize ByteString"}}
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: {:vector {:required #{:handler-chain}, :generic-str "Unable to deserialize vector"}, :list {:required #{:handler-chain}, :generic-str "Unable to deserialize list"}, :set {:required #{:handler-chain}, :generic-str "Unable to deserialize set"}, :var {:required #{:handler-chain}, :generic-str "Unable to resolve var"}, :byte-string {:required #{:handler-chain}, :generic-str "Unable to deserialize ByteString"}}
(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:
{:vector {:required #{:handler-chain}, :generic-str "Unable to deserialize vector"}, :list {:required #{:handler-chain}, :generic-str "Unable to deserialize list"}, :set {:required #{:handler-chain}, :generic-str "Unable to deserialize set"}, :var {:required #{:handler-chain}, :generic-str "Unable to resolve var"}, :byte-string {:required #{:handler-chain}, :generic-str "Unable to deserialize ByteString"}}
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: {:vector {:required #{:handler-chain}, :generic-str "Unable to deserialize vector"}, :list {:required #{:handler-chain}, :generic-str "Unable to deserialize list"}, :set {:required #{:handler-chain}, :generic-str "Unable to deserialize set"}, :var {:required #{:handler-chain}, :generic-str "Unable to resolve var"}, :byte-string {:required #{:handler-chain}, :generic-str "Unable to deserialize ByteString"}}
(raise-storage subtype detail-str data)
(raise-storage subtype detail-str data cause)
Records this raise-site under :bbtree.storage/<subtype> in eva.error/eva-error-form and expands into:
(raise :bbtree.storage/<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:
{:failure {:required #{:method}, :generic-str "A storage failure occurred in the btree"}, :timeout {:required #{:method :timeout-ms}, :generic-str "A storage timeout occurred in the btree"}}
Records this raise-site under :bbtree.storage/<subtype> in eva.error/eva-error-form and expands into: (raise :bbtree.storage/<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: {:failure {:required #{:method}, :generic-str "A storage failure occurred in the btree"}, :timeout {:required #{:method :timeout-ms}, :generic-str "A storage timeout occurred in the btree"}}
(storage subtype detail-str data)
(storage subtype detail-str data cause)
Records this raise-site under :bbtree.storage/<subtype> in eva.error/eva-error-form, and expands into the equivalent of:
(error (str "<subtype-generic-str>: " detail-str)
:bbtree.storage/<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:
{:failure {:required #{:method}, :generic-str "A storage failure occurred in the btree"}, :timeout {:required #{:method :timeout-ms}, :generic-str "A storage timeout occurred in the btree"}}
Records this raise-site under :bbtree.storage/<subtype> in eva.error/eva-error-form, and expands into the equivalent of: (error (str "<subtype-generic-str>: " detail-str) :bbtree.storage/<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: {:failure {:required #{:method}, :generic-str "A storage failure occurred in the btree"}, :timeout {:required #{:method :timeout-ms}, :generic-str "A storage timeout occurred in the btree"}}
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close