Exception: Stemcell::UnknownBackingStoreError
- Defined in:
- lib/stemcell/errors.rb
Instance Attribute Summary collapse
-
#backing_store ⇒ Object
readonly
Returns the value of attribute backing_store.
Instance Method Summary collapse
-
#initialize(backing_store) ⇒ UnknownBackingStoreError
constructor
A new instance of UnknownBackingStoreError.
Constructor Details
#initialize(backing_store) ⇒ UnknownBackingStoreError
Returns a new instance of UnknownBackingStoreError.
13 14 15 16 |
# File 'lib/stemcell/errors.rb', line 13 def initialize(backing_store) super "Unknown backing store: #{backing_store}" @backing_store = backing_store end |
Instance Attribute Details
#backing_store ⇒ Object (readonly)
Returns the value of attribute backing_store.
12 13 14 |
# File 'lib/stemcell/errors.rb', line 12 def backing_store @backing_store end |