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