Liking cljdoc? Tell your friends :D

eva.datastructures.error


concurrentcljmacro

(concurrent detail-str data)
(concurrent detail-str data cause)

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

(error :datastructures/concurrent-modification (str "Probable concurrent modification of datastructure: " detail-str) data cause)

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

(error :datastructures/concurrent-modification
       (str "Probable concurrent modification of datastructure: " detail-str)
       data
       cause)

sourceraw docstring

io-failurecljmacro

(io-failure detail-str data)
(io-failure detail-str data cause)

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

(error :datastructures/io-failure (str "I/O failure occurred in datastructures: " detail-str) data cause)

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

(error :datastructures/io-failure
       (str "I/O failure occurred in datastructures: " detail-str)
       data
       cause)

sourceraw docstring

non-monotonicitycljmacro

(non-monotonicity detail-str data)
(non-monotonicity detail-str data cause)

Records this raise-site under :datastructures/probable-non-montonicity in eva.error/eva-error-form, and expands into the equivalent of:

(error :datastructures/probable-non-montonicity (str "Probable non-monotonic modification to datastructure: " detail-str) data cause)

Records this raise-site under :datastructures/probable-non-montonicity in eva.error/eva-error-form, and expands into the equivalent of:

(error :datastructures/probable-non-montonicity
       (str "Probable non-monotonic modification to datastructure: " detail-str)
       data
       cause)

sourceraw docstring

raise-concurrentcljmacro

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

Records this raise-site under :datastructures/concurrent-modification in recide, and expands into:

(raise :datastructures/concurrent-modification (str "Probable concurrent modification of datastructure: " detail-str) data cause)

Records this raise-site under :datastructures/concurrent-modification in recide, and expands into:

(raise :datastructures/concurrent-modification
       (str "Probable concurrent modification of datastructure: " detail-str)
       data
       cause)

sourceraw docstring

raise-io-failurecljmacro

(raise-io-failure detail-str data)
(raise-io-failure detail-str data cause)

Records this raise-site under :datastructures/io-failure in recide, and expands into:

(raise :datastructures/io-failure (str "I/O failure occurred in datastructures: " detail-str) data cause)

Records this raise-site under :datastructures/io-failure in recide, and expands into:

(raise :datastructures/io-failure
       (str "I/O failure occurred in datastructures: " detail-str)
       data
       cause)

sourceraw docstring

raise-non-monotonicitycljmacro

(raise-non-monotonicity detail-str data)
(raise-non-monotonicity detail-str data cause)

Records this raise-site under :datastructures/probable-non-montonicity in recide, and expands into:

(raise :datastructures/probable-non-montonicity (str "Probable non-monotonic modification to datastructure: " detail-str) data cause)

Records this raise-site under :datastructures/probable-non-montonicity in recide, and expands into:

(raise :datastructures/probable-non-montonicity
       (str "Probable non-monotonic modification to datastructure: " detail-str)
       data
       cause)

sourceraw docstring

raise-stalecljmacro

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

Records this raise-site under :datastructures/stale in recide, and expands into:

(raise :datastructures/stale (str "Attempt to modify a locally stale datastructure: " detail-str) data cause)

Records this raise-site under :datastructures/stale in recide, and expands into:

(raise :datastructures/stale
       (str "Attempt to modify a locally stale datastructure: " detail-str)
       data
       cause)

sourceraw docstring

stalecljmacro

(stale detail-str data)
(stale detail-str data cause)

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

(error :datastructures/stale (str "Attempt to modify a locally stale datastructure: " detail-str) data cause)

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

(error :datastructures/stale
       (str "Attempt to modify a locally stale datastructure: " detail-str)
       data
       cause)

sourceraw docstring

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

× close