packages feed

hydra-0.1.1: src/main/haskell/Hydra/Util/Debug.hs

-- | Debugging utilities

module Hydra.Util.Debug where

import Control.Exception

newtype DebugException = DebugException String deriving Show

instance Exception DebugException

throwDebugException :: String -> c
throwDebugException = throw . DebugException