defmodule Ash.Error.Forbidden.MustPassStrictCheck do @moduledoc "Used when unreachable code/conditions are reached in the framework" use Ash.Error.Exception use Splode.Error, fields: [], class: :forbidden def message(_) do "The request was required to pass strict check, but it did not" end end