From 950eea3ba04e94cf3d5797f9b5d32b2621c89b55 Mon Sep 17 00:00:00 2001 From: Alexander Foremny Date: Tue, 13 Feb 2024 02:07:20 +0100 Subject: refactor library --- app/Exception.hs | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 app/Exception.hs (limited to 'app/Exception.hs') 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 -- cgit v1.2.3