gameServer/OfficialServer/DBInteraction.hs
changeset 2307 b20830087ed1
parent 2306 1addfe9fddb1
child 2385 56b2e12b9eeb
--- a/gameServer/OfficialServer/DBInteraction.hs	Wed Aug 12 12:52:14 2009 +0000
+++ b/gameServer/OfficialServer/DBInteraction.hs	Wed Aug 12 12:53:05 2009 +0000
@@ -41,8 +41,9 @@
 -------------------------------------------------------------------
 -- borrowed from base 4.0.0 ---------------------------------------
 onException :: IO a -> IO b -> IO a
-onException io what = io `Exception.catch` \e -> do what
-                                          Exception.throw (e :: Exception)
+onException io what = io `Exception.catch` \e -> do
+		what
+		Exception.throw (e :: Exception.Exception)
 -- to be deleted --------------------------------------------------
 -------------------------------------------------------------------