class Iglu::Registries::LookupFailure

Attributes

reason[R]
registry[R]

Public Class Methods

new(registry, reason) click to toggle source
# File lib/iglu-client/registries.rb, line 107
def initialize(registry, reason)
  @reason = reason
  @registry = registry
end

Public Instance Methods

to_s() click to toggle source
# File lib/iglu-client/registries.rb, line 112
def to_s
  "Lookup failure at #{@registry} because #{@reason}"
end