postgresql-replicant-0.1.0.1: src/Database/PostgreSQL/Replicant/Exception.hs
module Database.PostgreSQL.Replicant.Exception where import Control.Exception import Data.Typeable newtype ReplicantException = ReplicantException String deriving (Show, Typeable) instance Exception ReplicantException