shithub: MicroHs

ref: 2e9cf5226d1110714005e33650eb522a2fd99356
dir: /ghc/Control/Exn.hs/

View raw version
module Control.Exn(Exn, exnToString) where
import Control.Exception

type Exn = SomeException

exnToString :: Exn -> String
exnToString = trunc . show
  where trunc = head . lines