ash-project / spark

Tooling for building DSLs in Elixir
MIT License
105 stars 23 forks source link

fix: swap `Exception.exception?` for `Kernel.is_exception` #36

Closed ahey closed 1 year ago

ahey commented 1 year ago

Exception.exception? is deprecated and will be removed in elixir 1.15

Kernel.is_exception has been available since elixir 1.11, and since spark requires elixir ~> 1.13 we are safe to depend on it.

Contributor checklist