Sha256: 482977ee5d9063e80a08de844b7a1c11d543fbe5e99571090edbe923717c5202
Contents?: true
Size: 565 Bytes
Versions: 2
Compression:
Stored size: 565 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
virustotalx-1.1.0 | lib/virustotal/errors.rb |
virustotalx-1.0.0 | lib/virustotal/errors.rb |