name: throwable-exceptions
version: 0.1.0.7
synopsis: throwable-exceptions gives the easy way to throw exceptions
description: throwable-exceptions gives the easy way to throw exceptions
homepage: https://github.com/aiya000/hs-throwable-exceptions#README.md
license: MIT
license-file: LICENSE
author: aiya000
maintainer: aiya000.develop@gmail.com
copyright: aiya000
category: Exception
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -Wno-name-shadowing -Wno-unused-do-bind -Wno-unused-top-binds
exposed-modules: Control.Exception.Throwable
, Control.Exception.Throwable.TH
build-depends: base >= 4.7 && < 5
, safe-exceptions
, template-haskell
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Tasty.hs
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wno-unused-top-binds
other-modules: Control.Exception.ThrowableTest
, Control.Exception.Throwable.THTest
build-depends: base
, doctest
, either
, safe-exceptions
, tasty
, tasty-discover
, tasty-hunit
, text
, throwable-exceptions
executable throwable-exception-example
hs-source-dirs: example
main-is: Main.hs
default-language: Haskell2010
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wno-name-shadowing -Wno-unused-do-bind
build-depends: base >= 4.7 && < 5
, safe-exceptions
, throwable-exceptions