diff --git a/Database/Groundhog/Sqlite.hs b/Database/Groundhog/Sqlite.hs
--- a/Database/Groundhog/Sqlite.hs
+++ b/Database/Groundhog/Sqlite.hs
@@ -140,6 +140,15 @@
     liftIO $ S.exec c "COMMIT"
     return x
 
+instance TryConnectionManager Sqlite where
+  tryWithConn f g conn@(Sqlite c _) = do
+    liftIO $ S.exec c "BEGIN"
+    x <- g (f conn)
+    case x of
+      Left _ -> liftIO $ S.exec c "ROLLBACK"
+      Right _ -> liftIO $ S.exec c "COMMIT"
+    return x
+
 instance ExtractConnection Sqlite Sqlite where
   extractConn f conn = f conn
 
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,6 @@
+0.8.0.1
+* New typeclass to allow transaction rollback through ExceptT
+
 0.8
 * Support for GHC 8
 
diff --git a/groundhog-sqlite.cabal b/groundhog-sqlite.cabal
--- a/groundhog-sqlite.cabal
+++ b/groundhog-sqlite.cabal
@@ -1,5 +1,5 @@
 name:            groundhog-sqlite
-version:         0.8
+version:         0.8.0.1
 license:         BSD3
 license-file:    LICENSE
 author:          Boris Lykah <lykahb@gmail.com>
@@ -18,7 +18,7 @@
     build-depends:   base                     >= 4         && < 5
                    , bytestring               >= 0.9
                    , transformers             >= 0.2.1
-                   , groundhog                >= 0.8       && < 0.9
+                   , groundhog                >= 0.8.0.1   && < 0.9
                    , monad-control            >= 0.3       && < 1.1
                    , containers               >= 0.2
                    , text                     >= 0.8
