diff --git a/lib/ash/error/error.ex b/lib/ash/error/error.ex index 92f58b3b..f1e80318 100644 --- a/lib/ash/error/error.ex +++ b/lib/ash/error/error.ex @@ -1,5 +1,7 @@ defmodule Ash.Error do - @moduledoc false + @moduledoc """ + Tools and utilities used by Ash to manage and conform errors + """ @type error_class() :: :invalid | :authorization | :framework | :unknown @type t :: struct diff --git a/mix.exs b/mix.exs index 024be17e..5489fd3e 100644 --- a/mix.exs +++ b/mix.exs @@ -142,6 +142,7 @@ defmodule Ash.MixProject do ~r/Ash.Engine/ ], errors: [ + Ash.Error, Ash.Error.Stacktrace, Ash.Error.Exception ],