class Derelict::Instance::NotFound
The path used for the instance was not found
Public Class Methods
new(path)
click to toggle source
Initializes a new instance of this exception for a given path
* path: The requested path of the instance
Calls superclass method
Derelict::Exception::OptionalReason::new
# File lib/derelict/instance/not_found.rb, line 8 def initialize(path) super "directory doesn't exist: #{path}" end