summaryrefslogtreecommitdiff
path: root/src/Propellor/Types
diff options
context:
space:
mode:
authorFélix Sipma2016-06-20 12:27:24 +0200
committerFélix Sipma2016-06-20 12:27:24 +0200
commit7bd11859aeab19130e51a1607fd262f6a23b58ca (patch)
tree733257337ad312af9b9805280882d94b9d8b6709 /src/Propellor/Types
parent3a851213ad440476a37d2a318c4371b9e2c34ce2 (diff)
add DeriveDataTypeable extension to Exception
Diffstat (limited to 'src/Propellor/Types')
-rw-r--r--src/Propellor/Types/Exception.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Propellor/Types/Exception.hs b/src/Propellor/Types/Exception.hs
index 3a810d55..9fdcab93 100644
--- a/src/Propellor/Types/Exception.hs
+++ b/src/Propellor/Types/Exception.hs
@@ -1,10 +1,11 @@
+{-# LANGUAGE DeriveDataTypeable #-}
module Propellor.Types.Exception where
import Data.Typeable
import Control.Exception
--- | Normally when an exception is encountered while propellor is
--- ensuring a property, the property fails, but propellor robustly
+-- | Normally when an exception is encountered while propellor is
+-- ensuring a property, the property fails, but propellor robustly
-- continues on to the next property.
--
-- This is the only exception that will stop the entire propellor run,