dependency-0.1.0.0: src/Data/Dependency/Error.hs
module Data.Dependency.Error ( ResolveError (..)
, DepM
) where
import Data.Dependency.Type
type DepM = Either ResolveError
-- | An error that can occur during package resolution.
data ResolveError = NoSolution
| CircularDependencies String String
| NotPresent [String]
| Conflict String String (Constraint Version) (Constraint Version)