1 -----------------------------------------------------------------------------
4 -- Module : Distribution.PackageDescription.Utils
6 -- Maintainer : cabal-devel@haskell.org
7 -- Portability : portable
9 -- Common utils used by modules under Distribution.PackageDescription.*.
10 module Distribution
.PackageDescription
.Utils
15 -- ----------------------------------------------------------------------------
16 -- Exception and logging utils
18 userBug
:: String -> a
19 userBug msg
= error $ msg
++ ". This is a bug in your .cabal file."
21 cabalBug
:: String -> a
25 ++ ". This is possibly a bug in Cabal.\n"
26 ++ "Please report it to the developers: "
27 ++ "https://github.com/haskell/cabal/issues/new"