base-io-access-0.4.0.0: The IO functions included in base delimited into small, composable classes

Safe HaskellSafe-Inferred
LanguageHaskell2010

Access.System.IO.Error

Documentation

class Access io => IOErrorAccess io where Source

Methods

ioError' :: IOError -> io a Source

catchIOError' :: io a -> (IOError -> io a) -> io a Source

tryIOError' :: io a -> io (Either IOError a) Source

modifyIOError' :: (IOError -> IOError) -> io a -> io a Source

Instances