blob: 3506c1e2719bcef02749f35fc0553daf70c5bf6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE NoImplicitPrelude #-}
module GHC.IO.Exception where
import GHC.Base
import GHC.Exception
data IOException
instance Exception IOException
type IOError = IOException
userError :: String -> IOError
unsupportedOperation :: IOError
|