packages feed

postgresql-replicant-0.2.0.1: src/Database/PostgreSQL/Replicant/Exception.hs

{-# LANGUAGE Strict #-}

module Database.PostgreSQL.Replicant.Exception where

import Control.Exception
import Data.Typeable

newtype ReplicantException = ReplicantException String
  deriving (Show, Typeable)

instance Exception ReplicantException