diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-12-08 07:34:55 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-12-08 07:35:33 +0100 |
commit | 5c9c7b360e4578f3db487e663587194746d0386b (patch) | |
tree | 625f7adf8430bf847e7ef760e9403f480619c2a2 /app/Exception.hs | |
parent | 19b148277aa5a80bce1c87e33bb857e66698f4eb (diff) |
fix: fix `Git.readTextFileOf`
Diffstat (limited to 'app/Exception.hs')
-rw-r--r-- | app/Exception.hs | 2 |
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 |