Sha256: 53e19aceb5694a8845bc7b604009bb58bc219198e0998b71dad90124d38d839f
Contents?: true
Size: 320 Bytes
Versions: 9
Compression:
Stored size: 320 Bytes
Contents
# frozen_string_literal: true module UrlScan class ResponseError < StandardError; end class AuthenticationError < ResponseError; end class NotFound < ResponseError; end class ProcessingError < ResponseError; end class RateLimited < ResponseError; end class InternalServerError < ResponseError; end end
Version data entries
9 entries across 9 versions & 1 rubygems