Sha256: 12283102c4cfd5e7d5bd62af449240e267d8c661a43fe84ae6701b2043e89e1f
Contents?: true
Size: 347 Bytes
Versions: 3
Compression:
Stored size: 347 Bytes
Contents
# frozen_string_literal: true module CreditGateway class UnauthorizedError < StandardError; end class GenericError < StandardError; end class InvalidRequestError < StandardError; end class NotFoundError < StandardError; end class CompanyNotFoundError < InvalidRequestError; end class ConflictError < InvalidRequestError; end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
credit_gateway-0.3.2 | lib/credit_gateway/errors.rb |
credit_gateway-0.3.1 | lib/credit_gateway/errors.rb |
credit_gateway-0.3.0 | lib/credit_gateway/errors.rb |