Packages

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
monzo_client lib monzo error webhook_verification_error.ex
Raw

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