packages feed

tinkoff-invest-sdk-0.1.0.0: src/Invest/Client/Errors.hs

module Invest.Client.Errors (
    SDKError(..)
) where

import           Control.Exception (Exception)
import           Data.Text         (Text)

data SDKError =
      ClientSetupError Text
    | GrpcError Text
    deriving Show

instance Exception SDKError