improvement: make Ash.Error a public module

This commit is contained in:
Zach Daniel 2021-03-19 18:23:48 -04:00
parent d229bacb59
commit e206167f27
2 changed files with 4 additions and 1 deletions

View file

@ -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

View file

@ -142,6 +142,7 @@ defmodule Ash.MixProject do
~r/Ash.Engine/
],
errors: [
Ash.Error,
Ash.Error.Stacktrace,
Ash.Error.Exception
],