Exception: Stemcell::UnknownBackingStoreError

Inherits:
Error
  • Object
show all
Defined in:
lib/stemcell/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_storeObject (readonly)

Returns the value of attribute backing_store.



12
13
14
# File 'lib/stemcell/errors.rb', line 12

def backing_store
  @backing_store
end