class Derelict::Box::NotFound
A box that isn't currently installed has been retrieved
Public Class Methods
new(box_name, provider)
click to toggle source
Initializes a new instance, for a particular box name/provider
* box_name: The name of the box that this exception relates to * provider: The provider of the box that this exception relates to
Calls superclass method
# File lib/derelict/box/not_found.rb, line 11 def initialize(box_name, provider) super "Box '#{box_name}' for provider '#{provider}' missing" end