Current section
Files
Jump to
Current section
Files
lib/msgpack/unsupported_atom_error.ex
defmodule Msgpack.UnsupportedAtomError do
defexception [:atom]
@impl true
def message(exception) do
"Cannot encode atom #{inspect(exception.atom)} when `atoms: :error` option is set."
end
end