-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Exit codes as defined by BSD -- -- Expose the exit codes defined by BSD in sysexits.h to the Haskell -- world. @package exit-codes @version 0.1.0.0 module System.Exit.Codes -- | successful termination exOk :: Int -- | successful termination codeOk :: ExitCode -- | command line usage error exUsage :: Int -- | command line usage error codeUsage :: ExitCode -- | data format error exDataErr :: Int -- | data format error codeDataErr :: ExitCode -- | cannot open input exNoInput :: Int -- | cannot open input codeNoInput :: ExitCode -- | addressee unknown exNoUser :: Int -- | addressee unknown codeNoUser :: ExitCode -- | host name unknown exNoHost :: Int -- | host name unknown codeNoHost :: ExitCode -- | service unavailable exUnavailable :: Int -- | service unavailable codeUnavaiable :: ExitCode -- | internal software error exSoftware :: Int -- | internal software error codeSoftware :: ExitCode -- | system error (e.g., can't fork) exOsErr :: Int -- | system error (e.g., can't fork) codeOsErr :: ExitCode -- | critical OS file missing exOsFile :: Int -- | critical OS file missing codeOsFile :: ExitCode -- | can't create (user) output file exCantCreate :: Int -- | can't create (user) output file codeCantCreate :: ExitCode -- | input/output error exIOErr :: Int -- | input/output error codeIOErr :: ExitCode -- | temp failure; user is invited to retry exTempFail :: Int -- | temp failure; user is invited to retry codeTempFail :: ExitCode -- | remote error in protocol exProtocol :: Int -- | remote error in protocol codeProtocol :: ExitCode -- | permission denied exNoPerm :: Int -- | permission denied codeNoPerm :: ExitCode -- | configuration error exConfig :: Int -- | configuration error codeConfig :: ExitCode