class Arke::Errors::ConnectionRefused

Public Class Methods

new(host) click to toggle source
Calls superclass method
# File lib/arke/errors.rb, line 19
def initialize(host)
  message = "There was an error connecting to the resource at #{host}"
  super message
end