aboutsummaryrefslogtreecommitdiffstats
path: root/app/Exception.hs
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2023-12-08 07:34:55 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2023-12-08 07:35:33 +0100
commit5c9c7b360e4578f3db487e663587194746d0386b (patch)
tree625f7adf8430bf847e7ef760e9403f480619c2a2 /app/Exception.hs
parent19b148277aa5a80bce1c87e33bb857e66698f4eb (diff)
fix: fix `Git.readTextFileOf`
Diffstat (limited to 'app/Exception.hs')
-rw-r--r--app/Exception.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Exception.hs b/app/Exception.hs
index 41097b3..5428194 100644
--- a/app/Exception.hs
+++ b/app/Exception.hs
@@ -62,7 +62,7 @@ data InvalidIssue = InvalidIssue (P.ParseErrorBundle [D.Node] Void)
instance Exception InvalidIssue
-data CannotReadFile = CannotReadFile
+data CannotReadFile = CannotReadFile FilePath
deriving (Show)
instance Exception CannotReadFile