Exception: Rock::Bundles::BundleNotFound

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/rock/bundles.rb

Overview

Exception raised when the bundle support looks for a particular bundle but cound not find it, such as during dependency resolution

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ BundleNotFound

Returns a new instance of BundleNotFound



193
194
195
# File 'lib/rock/bundles.rb', line 193

def initialize(name)
    @name = name
end

Instance Attribute Details

#nameObject (readonly)

The name of the bundle that was being looked for



191
192
193
# File 'lib/rock/bundles.rb', line 191

def name
  @name
end