<@U8VU8RUJD> if you are modeling your errors as va...
# arrow
r
@jereksel if you are modeling your errors as values they usually have the shape of an ADT where each case is ment to address a known error and the hierarchy is closed, small and usually each logical lager has its own so easier to find. For example Persistence Errors. You can just find usages of the value at instantiation position and it will show you where it is used. Additionally you can find them by use of
raiseError
or instances of
Left
etc... if you are using Either directly.