(conc-err subtype detail-str data)
(conc-err subtype detail-str data cause)
Records this raise-site under :value-store.concurrent/<subtype> in eva.error/eva-error-form, and expands into the equivalent of:
(error (str "<subtype-generic-str>: " detail-str)
:value-store.concurrent/<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:
{:state {:required #{}, :generic-str "Value store in illegal state"}, :unknown {:required #{:method}, :generic-str "Value store encountered unknown exception"}}
Records this raise-site under :value-store.concurrent/<subtype> in eva.error/eva-error-form, and expands into the equivalent of: (error (str "<subtype-generic-str>: " detail-str) :value-store.concurrent/<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: {:state {:required #{}, :generic-str "Value store in illegal state"}, :unknown {:required #{:method}, :generic-str "Value store encountered unknown exception"}}
(data-err detail-str data)
(data-err detail-str data cause)
Records this raise-site under :storage.error/data in eva.error/eva-error-form, and expands into the equivalent of:
(error :storage.error/data
(str "Invalid data: " detail-str)
data
cause)
The following keys are required in the data-map: #{:invalid}
Records this raise-site under :storage.error/data in eva.error/eva-error-form, and expands into the equivalent of: (error :storage.error/data (str "Invalid data: " detail-str) data cause) The following keys are required in the data-map: #{:invalid}
(ddb-err subtype detail-str data)
(ddb-err subtype detail-str data cause)
Records this raise-site under :storage.dynamo/<subtype> in eva.error/eva-error-form, and expands into the equivalent of:
(error (str "<subtype-generic-str>: " detail-str)
:storage.dynamo/<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:
{:credentials {:required #{}, :generic-str "Invalid AWSCredentials"}, :unprocessed {:required #{}, :generic-str "Error processing items"}}
Records this raise-site under :storage.dynamo/<subtype> in eva.error/eva-error-form, and expands into the equivalent of: (error (str "<subtype-generic-str>: " detail-str) :storage.dynamo/<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: {:credentials {:required #{}, :generic-str "Invalid AWSCredentials"}, :unprocessed {:required #{}, :generic-str "Error processing items"}}
(npe detail-str data)
(npe detail-str data cause)
Records this raise-site under :value-store/NPE in eva.error/eva-error-form, and expands into the equivalent of:
(error :value-store/NPE
(str "Null pointer error in storage: " detail-str)
data
cause)
The following keys are required in the data-map: #{:method}
Records this raise-site under :value-store/NPE in eva.error/eva-error-form, and expands into the equivalent of: (error :value-store/NPE (str "Null pointer error in storage: " detail-str) data cause) The following keys are required in the data-map: #{:method}
(raise-conc-err subtype detail-str data)
(raise-conc-err subtype detail-str data cause)
Records this raise-site under :value-store.concurrent/<subtype> in eva.error/eva-error-form and expands into:
(raise :value-store.concurrent/<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:
{:state {:required #{}, :generic-str "Value store in illegal state"}, :unknown {:required #{:method}, :generic-str "Value store encountered unknown exception"}}
Records this raise-site under :value-store.concurrent/<subtype> in eva.error/eva-error-form and expands into: (raise :value-store.concurrent/<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: {:state {:required #{}, :generic-str "Value store in illegal state"}, :unknown {:required #{:method}, :generic-str "Value store encountered unknown exception"}}
(raise-data-err detail-str data)
(raise-data-err detail-str data cause)
Records this raise-site under :storage.error/data in recide, and expands into:
(raise :storage.error/data
(str "Invalid data: " detail-str)
data
cause)
The following keys are required in the data-map: #{:invalid}
Records this raise-site under :storage.error/data in recide, and expands into: (raise :storage.error/data (str "Invalid data: " detail-str) data cause) The following keys are required in the data-map: #{:invalid}
(raise-ddb-err subtype detail-str data)
(raise-ddb-err subtype detail-str data cause)
Records this raise-site under :storage.dynamo/<subtype> in eva.error/eva-error-form and expands into:
(raise :storage.dynamo/<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:
{:credentials {:required #{}, :generic-str "Invalid AWSCredentials"}, :unprocessed {:required #{}, :generic-str "Error processing items"}}
Records this raise-site under :storage.dynamo/<subtype> in eva.error/eva-error-form and expands into: (raise :storage.dynamo/<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: {:credentials {:required #{}, :generic-str "Invalid AWSCredentials"}, :unprocessed {:required #{}, :generic-str "Error processing items"}}
(raise-npe detail-str data)
(raise-npe detail-str data cause)
Records this raise-site under :value-store/NPE in recide, and expands into:
(raise :value-store/NPE
(str "Null pointer error in storage: " detail-str)
data
cause)
The following keys are required in the data-map: #{:method}
Records this raise-site under :value-store/NPE in recide, and expands into: (raise :value-store/NPE (str "Null pointer error in storage: " detail-str) data cause) The following keys are required in the data-map: #{:method}
(raise-request-cardinality detail-str data)
(raise-request-cardinality detail-str data cause)
Records this raise-site under :storage.error/request-cardinality-exceeded in recide, and expands into:
(raise :storage.error/request-cardinality-exceeded (str "Max request cardinality exceeded: " detail-str) data cause)
Records this raise-site under :storage.error/request-cardinality-exceeded in recide, and expands into: (raise :storage.error/request-cardinality-exceeded (str "Max request cardinality exceeded: " detail-str) data cause)
(raise-sql-err subtype detail-str data)
(raise-sql-err subtype detail-str data cause)
Records this raise-site under :storage.sql/<subtype> in eva.error/eva-error-form and expands into:
(raise :storage.sql/<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:
{:unknown {:required #{}, :generic-str "Unknown exception logged in SQL Storage error"}, :non-extant {:required #{}, :generic-str "SQL Storage not started"}, :cas-failure {:required #{}, :generic-str "SQL Storage CAS failed"}, :unexpected-cas-update-result {:required #{}, :generic-str "SQL Storage CAS update error"}}
Records this raise-site under :storage.sql/<subtype> in eva.error/eva-error-form and expands into: (raise :storage.sql/<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: {:unknown {:required #{}, :generic-str "Unknown exception logged in SQL Storage error"}, :non-extant {:required #{}, :generic-str "SQL Storage not started"}, :cas-failure {:required #{}, :generic-str "SQL Storage CAS failed"}, :unexpected-cas-update-result {:required #{}, :generic-str "SQL Storage CAS update error"}}
(request-cardinality detail-str data)
(request-cardinality detail-str data cause)
Records this raise-site under :storage.error/request-cardinality-exceeded in eva.error/eva-error-form, and expands into the equivalent of:
(error :storage.error/request-cardinality-exceeded (str "Max request cardinality exceeded: " detail-str) data cause)
Records this raise-site under :storage.error/request-cardinality-exceeded in eva.error/eva-error-form, and expands into the equivalent of: (error :storage.error/request-cardinality-exceeded (str "Max request cardinality exceeded: " detail-str) data cause)
(sql-err subtype detail-str data)
(sql-err subtype detail-str data cause)
Records this raise-site under :storage.sql/<subtype> in eva.error/eva-error-form, and expands into the equivalent of:
(error (str "<subtype-generic-str>: " detail-str)
:storage.sql/<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:
{:unknown {:required #{}, :generic-str "Unknown exception logged in SQL Storage error"}, :non-extant {:required #{}, :generic-str "SQL Storage not started"}, :cas-failure {:required #{}, :generic-str "SQL Storage CAS failed"}, :unexpected-cas-update-result {:required #{}, :generic-str "SQL Storage CAS update error"}}
Records this raise-site under :storage.sql/<subtype> in eva.error/eva-error-form, and expands into the equivalent of: (error (str "<subtype-generic-str>: " detail-str) :storage.sql/<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: {:unknown {:required #{}, :generic-str "Unknown exception logged in SQL Storage error"}, :non-extant {:required #{}, :generic-str "SQL Storage not started"}, :cas-failure {:required #{}, :generic-str "SQL Storage CAS failed"}, :unexpected-cas-update-result {:required #{}, :generic-str "SQL Storage CAS update error"}}
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close