Follow extensible exception changes
[ghc-hetmet.git] / compiler / utils / Exception.hs
diff --git a/compiler/utils/Exception.hs b/compiler/utils/Exception.hs
new file mode 100644 (file)
index 0000000..11172b5
--- /dev/null
@@ -0,0 +1,19 @@
+
+module Exception
+    (
+#if __GLASGOW_HASKELL__ >= 609
+    module Control.OldException
+#else
+    module Control.Exception
+#endif
+    )
+    where
+
+import Prelude ()
+
+#if __GLASGOW_HASKELL__ >= 609
+import Control.OldException
+#else
+import Control.Exception
+#endif
+