summaryrefslogtreecommitdiff
path: root/src/Propellor/Types
diff options
context:
space:
mode:
authorJoey Hess2016-06-20 13:48:54 -0400
committerJoey Hess2016-06-20 13:48:54 -0400
commita0d9ebf0334c98be75d18fd83d860ec7370a8005 (patch)
treeb5b93bbe6b32e4c5c4af450a028a1f16f57f789b /src/Propellor/Types
parentf0fbdce8fd8369eaa78dfff02aca79fb61170931 (diff)
parent255a52c13ccb0e78744c32c7cbb169682e2b947a (diff)
Merge remote-tracking branch 'felix/derivedatatypeable-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,