ninoseki/urlscan

View on GitHub
lib/urlscan/exceptions.rb

Summary

Maintainability
A
0 mins
Test Coverage
# 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