packages feed

reflex-dom-0.3: src/Reflex/Dom/Xhr/Exception.hs

{-# LANGUAGE DeriveDataTypeable #-}

module Reflex.Dom.Xhr.Exception where

import Data.Typeable
import Control.Exception (Exception(..))

data XhrException = XhrException_Error
                  | XhrException_Aborted
     deriving (Show, Read, Eq, Ord, Typeable)

instance Exception XhrException