diff options
Diffstat (limited to 'app/Exception.hs')
-rw-r--r-- | app/Exception.hs | 23 |
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 |