pandoc-citeproc-0.11: src/Text/CSL/Exception.hs
{-# LANGUAGE StandaloneDeriving #-}
module Text.CSL.Exception (CiteprocException(..)) where
import Control.Exception (Exception)
data CiteprocException =
ErrorParsingReferences String
| CouldNotFindAbbrevFile String
| CouldNotFindBibFile String
| ErrorReadingBibFile String String
| ErrorReadingBib String
| ErrorSplittingDate
| MacroNotFound String
| DependentStyleHasItselfAsParent String
deriving Show
instance Exception CiteprocException