aboutsummaryrefslogtreecommitdiffstats
path: root/app/Exception.hs
diff options
context:
space:
mode:
authorLibravatar Alexander Foremny <aforemny@posteo.de>2024-02-13 02:07:20 +0100
committerLibravatar Alexander Foremny <aforemny@posteo.de>2024-02-13 02:10:56 +0100
commit950eea3ba04e94cf3d5797f9b5d32b2621c89b55 (patch)
tree2e6aee5b7f571ca8022181689d5650a8c1b82f03 /app/Exception.hs
parentb110c5904d4b252d0adbb7fbfabd3270a7844fd3 (diff)
refactor library
Diffstat (limited to 'app/Exception.hs')
-rw-r--r--app/Exception.hs23
1 files changed, 0 insertions, 23 deletions
diff --git a/app/Exception.hs b/app/Exception.hs
deleted file mode 100644
index 0cccf5b..0000000
--- a/app/Exception.hs
+++ /dev/null
@@ -1,23 +0,0 @@
-module Exception
- ( DecodeException (DecodeException),
- DuplicateField (DuplicateField),
- ParseError (ParseError),
- )
-where
-
-import Control.Exception (Exception)
-
-data DecodeException = DecodeException
- deriving (Show)
-
-instance Exception DecodeException
-
-data DuplicateField = DuplicateField String
- deriving (Show)
-
-instance Exception DuplicateField
-
-data ParseError = ParseError String
- deriving (Show)
-
-instance Exception ParseError