d-bus-0.0.1: src/DBus/Error.hs
{-# LANGUAGE DeriveDataTypeable #-}
module DBus.Error where
import Control.Exception as Ex
import Data.Typeable (Typeable)
data DBusError = CouldNotConnect String
| DBusParseError String
| MarshalError String
deriving (Show, Eq, Typeable)
instance Ex.Exception DBusError