@hackage throwable-exceptions0.1.0.5

throwable-exceptions gives the easy way to throw exceptions

♦️ throwable-exceptions ♦️

Build Status Hackage

throwable-exceptions gives the easy way to create the data types of Exception instance with TemplateHaskell, and gives the simple data types of Exception instance with its value constructor, for your haskell project 🐶

📚 Document is available in here 📚

💪 Why we should use this ? 💪

We want to throw some exception frequently, but the mostly throwable exceptions are not given by base.
throwable-exceptions complements it 👍

Examples

  • vvv The summary of the exact examples is available here vvv

You can create a data type of Exception instance by a line

module Main where

declareException "MyException"
-- ^^^
-- This is same to write below line yourself
--     data MyException a = MyException
--      { myExceptionCause :: String
--      , MyExceptionClue  :: a --      } deriving (Show, Typeable)
--     instance (Typeable a, Show a) => Exception (MyException a)

main :: IO ()
main = do
  print $ MyException "hi" 10
  print $ myException "poi"

Several exception is defined by default 😄

For example, IOException's value constructor is not given 😢
But you can use Control.Exception.Throwable.IOException' instead 🐶

module Main where

main :: IO ()
main = do
  throwM $ IOException' "oops!" "in main"
  throwM $ ioException' "oops!"

👍

PR is welcome !