diff options
| author | Félix Sipma <felix.sipma@no-log.org> | 2016-06-20 12:27:24 +0200 |
|---|---|---|
| committer | Félix Sipma <felix.sipma@no-log.org> | 2016-06-20 12:27:24 +0200 |
| commit | 7bd11859aeab19130e51a1607fd262f6a23b58ca (patch) | |
| tree | 733257337ad312af9b9805280882d94b9d8b6709 | |
| parent | 3a851213ad440476a37d2a318c4371b9e2c34ce2 (diff) | |
add DeriveDataTypeable extension to Exception
| -rw-r--r-- | src/Propellor/Types/Exception.hs | 5 |
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, |
