Packages
monzo_client
1.0.0
A complete, production-grade Elixir client for the Monzo API: OAuth2, Accounts, Balance, Pots, Transactions, Feed Items, Attachments, Transaction Receipts, and Webhooks. Zero required dependencies.
Current section
Files
Jump to
Current section
Files
lib/monzo/error/webhook_verification_error.ex
defmodule Monzo.Error.WebhookVerificationError do
@moduledoc """
Raised by webhook parsing/verification helpers when a payload cannot be
trusted (malformed JSON, unexpected shape, or an unexpected account id).
"""
defexception [:message]
@type t :: %__MODULE__{message: String.t()}
end