From f484483d8455ecb38c1a64e999e875a024dca937 Mon Sep 17 00:00:00 2001 From: Luke Cycon Date: Fri, 8 Apr 2016 12:06:44 -0700 Subject: [PATCH] Re-export `throwE` from module `Servant` Fixes #442 --- servant-server/src/Servant.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/servant-server/src/Servant.hs b/servant-server/src/Servant.hs index 96fd219f..ed24756d 100644 --- a/servant-server/src/Servant.hs +++ b/servant-server/src/Servant.hs @@ -10,8 +10,10 @@ module Servant ( module Servant.Utils.StaticFiles, -- | Useful re-exports Proxy(..), + throwError ) where +import Control.Monad.Error.Class (throwError) import Data.Proxy import Servant.API import Servant.Server