Sha256: 385d3f9de98126d6bc7b4038e667ed36a48db596b0c9d315296b704e6c946e9a

Contents?: true

Size: 576 Bytes

Versions: 1

Compression:

Stored size: 576 Bytes

Contents

# frozen_string_literal: true

module VirusTotal
  class Error < StandardError; end

  class AlreadyExistsError < Error; end

  class AuthenticationRequiredError < Error; end

  class BadRequestError < Error; end

  class ForbiddenError < Error; end

  class InvalidArgumentError < Error; end

  class NotFoundError < Error; end

  class QuotaExceededError < Error; end

  class RateLimitError < Error; end

  class TooManyRequestsError < Error; end

  class TransientError < Error; end

  class UserNotActiveError < Error; end

  class WrongCredentialsError < Error; end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
virustotalx-1.2.0 lib/virustotal/errors.rb