diff options
author | 2025-02-19 14:20:33 +0100 | |
---|---|---|
committer | 2025-02-19 14:21:09 +0100 | |
commit | 7916df381a7832f01f6dafb83ab62d5095af808d (patch) | |
tree | aa835c0c51355a905f7d0c046ddaf65393d32700 /src/Store/Exception.hs | |
parent | 47ca7c9e8658c1bdbd9e9519581935b1da3ee538 (diff) |
generalize `Store.query`
Diffstat (limited to 'src/Store/Exception.hs')
-rw-r--r-- | src/Store/Exception.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Store/Exception.hs b/src/Store/Exception.hs index 94beaab..579256c 100644 --- a/src/Store/Exception.hs +++ b/src/Store/Exception.hs @@ -9,7 +9,7 @@ where import Control.Exception (Exception) import Data.Aeson qualified as J -data DecodeException = DecodeException +data DecodeException = DecodeException String deriving (Show) instance Exception DecodeException |