fused-effects-1.0.2.0: src/Control/Effect/Throw/Internal.hs
{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE KindSignatures #-}
module Control.Effect.Throw.Internal
( Throw(..)
) where
import Control.Effect.Class
import GHC.Generics (Generic1)
-- | @since 1.0.0.0
newtype Throw e (m :: * -> *) k = Throw e
deriving (Functor, Generic1)
instance HFunctor (Throw e)
instance Effect (Throw e)