# Exception Annotations: Lay of the Land

> Source: <https://discourse.haskell.org/t/exception-annotations-lay-of-the-land/14056#post_7>
> Published: 2026-05-22 19:31:47+00:00

I completely agree. I remember advocating heavily for the adoption of being part of a lot of the design discussions around this feature (Original blog post, the library as it is today), and I do not at all recall this being a thing anyone needed or wanted.
annotated-exception
works today and on older GHCs and does not contain these warts nearly as much; but it is unfortunately limited for library development because it forces all consumers of your library to adopt annotated-exception
and deal with the AnnotatedException
wrapper. My next plan for the library is to figure out how to incorporate the new ExceptionContext
changes without ruining the utility and UX of the library.
