typhoeus/typhoeus

View on GitHub
lib/typhoeus/errors/no_stub.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Typhoeus
  module Errors

    # Raises when block connection is turned on
    # and making a real request.
    class NoStub < TyphoeusError
      def initialize(request)
        super("The connection is blocked and no stub defined: #{request.url}")
      end
    end
  end
end