packages feed

hydra-0.12.0: src/main/haskell/Hydra/Tools/Debug.hs

-- | Debugging utilities

module Hydra.Tools.Debug where

import Control.Exception

newtype DebugException = DebugException String deriving Show

instance Exception DebugException

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