diff -r 1addfe9fddb1 -r b20830087ed1 gameServer/OfficialServer/DBInteraction.hs --- 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 -------------------------------------------------- -------------------------------------------------------------------