jvoegele
Announcing Errata, an Elixir library for consistent and structured error handling.
Errata is an Elixir library that promotes a consistent and structured approach to error handling.
Errata provides support for defining custom structured error types, which can either be returned as error values or raised as exceptions.
Errata errors are named, structured types that represent error conditions in an application or library. Being named types means that errors have a unique and meaningful name within a particular context. Being structured types means that errors have a well-defined, consistent structure identifying the nature of the error, and can also have arbitrary contextual information attached to them for logging or debugging purposes.
Trending in Announcing
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
New
I released Doggo, a collection of unstyled Phoenix components.
https://github.com/woylie/doggo
Features
Unstyled Phoenix components....
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hello
Published a new library - ProcessHub!
ProcessHub is a library designed to manage process distribution within the Elixir cluster. ...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
It’s not that it’s vocabulary is too advanced. It’s something worse.
I get lost trying to follow even a paragraph written by Claude. It’...
New
This showed up on my feed.. anyone heard of it? Just hype?
Ox Alpha is a reasoning model designed for coding, sustained ag...
New
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
nathanl
This looks interesting! Question: the docs say
I thought that was only available in
rescueblocks sinceSystem.stacktrace/0was deprecated years ago - for performance reasons IIRC. Are there any performance implications of using thecreate/1macro?jvoegele
Hi @nathanl,
The
create/1macro usesProcess.info(self(), :current_stacktrace)to fill in the stacktrace. I’m not sure about the efficiency of this function, but I would venture to say that if you are usingcreate/1for creating Errata errors in your codebase then it would probably not be on the critical path and would not affect overall system performance to any appreciable degree.nathanl
Yeah, hopefully you’re not creating errors in a tight loop.
jvoegele
Errata 0.9.0 is out, and it’s a sizable release — some new conveniences, sharper defaults, and a thorough documentation overhaul.
New functions
Errata.create/2— create an error of any type while still capturing the call-site environment, without having torequireeach error module. Since you alreadyrequire Erratato use the guards, you can justaliasyour error modules and write:Errata.to_map/1— convert any Errata error to a plain, JSON-encodable map without needing to know its specific module. Handy at a system boundary (e.g. a Phoenix fallback controller) that handles many error types uniformly.Errata.display_message/1— the bare, human-readable message intended for end users, as distinct fromException.message/1, which combines the message and:reasonfor logs and raised-exception output.Sharper defaults
reasn:instead ofreason:) now raises anArgumentErrorinstead of silently dropping it.Fixes
Elixir.prefix on module names, andenv.file_lineno longer has a stray trailing colon.Docs & tooling
Ordersbounded context), with clearer guidance on choosing between domain, infrastructure, and general errors, and on when to use a distinct error type vs. a:reason.Upgrading
Bump your dependency to:
The only breaking change is the stricter param validation. If you were (perhaps unknowingly) relying on extra keys being ignored, you’ll now get a clear
ArgumentError— in practice this usually just surfaces a typo.Thanks to everyone who’s given Errata a try and shared feedback; it’s genuinely shaped this release. More is always welcome.
jvoegele
Quick update for anyone following along: Errata has reached 1.0.0 — its first stable, production-ready release, with the public API now covered by Semantic Versioning.
Since this thread it has grown a fair bit: error wrapping/chaining (a
:causefield), context enrichment as errors propagate, declared-and-validated:reasons, error reporting via structured logging and telemetry, and HTTP-status mapping by error kind — alongside a thorough documentation pass.I’ve written up the full 1.0.0 picture, with examples, in a dedicated thread:
Thanks to everyone who’s tried Errata and shared feedback — it genuinely shaped the road to 1.0.