Packages

Elixir NIF wrapper for the Reticulum cryptographic mesh networking stack.

Current section

Files

Jump to
ex_reticulum lib ex_reticulum error.ex
Raw

lib/ex_reticulum/error.ex

defmodule ExReticulum.Error do
@moduledoc """
Exception raised by bang variants of ExReticulum functions.
"""
defexception [:reason]
@impl true
def message(%__MODULE__{reason: reason}) do
"ExReticulum error: #{reason}"
end
end