Sha256: 05cc7a3d87fa497f0f635e157d2d07f30dcee8a9465f57ee1f36aab3b8a28d83
Contents?: true
Size: 617 Bytes
Versions: 7
Compression:
Stored size: 617 Bytes
Contents
module Bing module Ads module API module Errors # Bing::Ads::API::Errors::AuthenticationParamsMissing class AuthenticationParamsMissing < RuntimeError; end; # Bing::Ads::API::Errors::AuthenticationTokenExpired class AuthenticationTokenExpired < RuntimeError; end; # Bing::Ads::API::Errors::LimitError class LimitError < RuntimeError def initialize(operation, limit, type) super("can not #{operation} more than #{limit} #{type.to_s.humanize.downcase.pluralize} in a single call") end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems