Skip to content

Commit

Permalink
yesss
Browse files Browse the repository at this point in the history
  • Loading branch information
parsonsmatt committed Jun 24, 2024
1 parent 1283a7e commit 6dd326f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Control/Exception/Annotated.hs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ data AnnotatedException exception
{ annotations :: [Annotation]
, exception :: exception
}
deriving (Show, Functor, Foldable, Traversable)
deriving (Functor, Foldable, Traversable)

instance (Exception exception) => Show (AnnotatedException exception) where
show = Safe.displayException

instance Applicative AnnotatedException where
pure =
Expand Down

0 comments on commit 6dd326f

Please sign in to comment.