Packages

Webhook delivery, monitoring, and management API. All endpoints under `/v1` require authentication via `Authorization: Bearer <api_key>` header unless marked as **Public**.

Current section

Files

Jump to
hooksniff lib error.ex
Raw

lib/error.ex

defmodule HookSniff.Error do
defexception [:message, :code, :status]
@type t :: %__MODULE__{
message: String.t(),
code: atom(),
status: integer() | nil
}
end