ninoseki/robtex-rb

View on GitHub
lib/robtex/exceptions.rb

Summary

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