lens-4.0.7: Lenses, Folds and Traversals

PortabilityRank2Types
Stabilityexperimental
MaintainerEdward Kmett <ekmett@gmail.com>
Safe HaskellNone

System.IO.Error.Lens

Contents

Description

 

Synopsis

IOException Lenses

location :: Lens' IOException StringSource

Where the error happened.

description :: Lens' IOException StringSource

Error type specific information.

handle :: Lens' IOException (Maybe Handle)Source

The handle used by the action flagging this error.

fileName :: Lens' IOException (Maybe FilePath)Source

fileName the error is related to.

errno :: Lens' IOException (Maybe CInt)Source

errno leading to this error, if any.

errorType :: Lens' IOException IOErrorTypeSource

What type of error it is

IOErrorType Prisms