aboutsummaryrefslogtreecommitdiff
path: root/src/Tomato/Data/Except.hs
blob: 30212cf1f776e0ddda10cc1595f45077083cdd95 (plain)
1
2
3
4
5
6
7
8
9
module Tomato.Data.Except
    ( DecodeException (..)
    ) where

import RIO

data DecodeException = DecodeException !Text
  deriving (Show, Typeable)
instance Exception DecodeException