Class: Iglu::Registries::NotFound
- Inherits:
-
Object
- Object
- Iglu::Registries::NotFound
- Defined in:
- lib/iglu-client/registries.rb
Overview
Lookup results
Instance Attribute Summary collapse
-
#registry ⇒ Object
readonly
Returns the value of attribute registry.
Instance Method Summary collapse
-
#initialize(registry) ⇒ NotFound
constructor
A new instance of NotFound.
- #to_s ⇒ Object
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
#registry ⇒ Object (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_s ⇒ Object
99 100 101 |
# File 'lib/iglu-client/registries.rb', line 99 def to_s "Not found at #{@registry}" end |