Class: Iglu::Registries::NotFound

Inherits:
Object
  • Object
show all
Defined in:
lib/iglu-client/registries.rb

Overview

Lookup results

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(registry) ⇒ NotFound

Returns a new instance of NotFound.



95
96
97
# File 'lib/iglu-client/registries.rb', line 95

def initialize(registry)
  @registry = registry
end

Instance Attribute Details

#registryObject (readonly)

Returns the value of attribute registry.



93
94
95
# File 'lib/iglu-client/registries.rb', line 93

def registry
  @registry
end

Instance Method Details

#to_sObject



99
100
101
# File 'lib/iglu-client/registries.rb', line 99

def to_s
  "Not found at #{@registry}"
end