{-# OPTIONS_GHC -Wall #-} {-# LANGUAGE StandaloneDeriving #-} {-| Description: Errors. * Errors -} module Parser.Errors (Error (..)) where -- | Errors that indicate that the issue is not with the text but with incorrect use of the parsing library. data Error = Ambiguity | Attempt_to_recover_a_filter_error | Incomplete_tokenisation deriving instance Show Error