class CFoundry::Timeout

Attributes

method[R]
parent[R]
uri[R]

Public Class Methods

new(method, uri, parent = nil) click to toggle source
Calls superclass method
# File lib/cfoundry/errors.rb, line 54
def initialize(method, uri, parent = nil)
  @method = method
  @uri = uri
  @parent = parent
  super(to_s)
end

Public Instance Methods

to_s() click to toggle source
# File lib/cfoundry/errors.rb, line 61
def to_s
  "#{method} #{uri} timed out"
end