[project @ 2003-06-12 15:15:23 by simonmar]
[ghc-base.git] / System / Exit.hs
index 23bfbdb..3c2aea2 100644 (file)
@@ -45,9 +45,9 @@ import System
 
 #ifndef __NHC__
 exitWith :: ExitCode -> IO a
-exitWith ExitSuccess = throw (ExitException ExitSuccess)
+exitWith ExitSuccess = throwIO (ExitException ExitSuccess)
 exitWith code@(ExitFailure n)
-  | n /= 0 = throw (ExitException code)
+  | n /= 0 = throwIO (ExitException code)
 #ifdef __GLASGOW_HASKELL__
   | otherwise = ioError (IOError Nothing InvalidArgument "exitWith" "ExitFailure 0" Nothing)
 #endif