Sha256: 44f62ca476586f04f3437909911cdf74ba56058fbec4c3d57d4cf87dd5e42061

Contents?: true

Size: 425 Bytes

Versions: 1

Compression:

Stored size: 425 Bytes

Contents

# frozen_string_literal: true

module Creditsafe
  class Error < StandardError; end

  class HttpError < Error; end

  class ApiError < Error; end

  class TimeoutError < HttpError; end

  class BadGatewayError < HttpError; end

  class DataError < ApiError; end

  class AccountError < ApiError; end

  class RequestError < ApiError; end

  class ProcessingError < ApiError; end

  class UnknownApiError < ApiError; end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
creditsafe-0.7.0 lib/creditsafe/errors.rb