lib/ash/error/invalid/no_such_resource.ex
defmodule Ash.Error.Invalid.NoSuchResource do
  @moduledoc "Used when a resource or alias is provided that doesn't exist"
  use Ash.Error.Exception
  def_ash_error([:resource, :message], class: :invalid)
  defimpl Ash.ErrorKind do
    def id(_), do: Ash.UUID.generate()
    def code(_), do: "no_such_resource"
    def message(%{message: message}) when message not in ["", nil], do: message
    def message(%{resource: resource}) do
      "No such resource #{inspect(resource)}"
    end
  end
end