Latch.Error.Store exception (latch v0.5.0)

Copy Markdown

The caller's Latch.Store implementation returned an error. The specific callback is in the action field.

action values

  • :fetch_session
  • :put_session
  • :delete_session
  • :update_session
  • :take_request
  • :put_request

Summary

Types

action()

@type action() ::
  :fetch_session
  | :put_session
  | :delete_session
  | :update_session
  | :take_request
  | :put_request

t()

@type t() :: %Latch.Error.Store{
  __exception__: term(),
  action: action(),
  did: String.t() | nil,
  reason: Latch.Store.reason()
}