class Typhoeus::Errors::NoStub

Raises when block connection is turned on and making a real request.

Public Class Methods

new(request) click to toggle source
Calls superclass method
# File lib/typhoeus/errors/no_stub.rb, line 7
def initialize(request)
  super("The connection is blocked and no stub defined: #{request.url}")
end