Current section

Files

Jump to
elixir_radius lib radius dict entry_not_found.ex
Raw

lib/radius/dict/entry_not_found.ex

defmodule Radius.Dict.EntryNotFoundError do
defexception [:type, :key]
def message(e) do
"Entry #{e.type} not found for key: #{inspect(e.key)}"
end
end