class Derelict::Connection::NotFound

The Vagrantfile for the connection 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
# File lib/derelict/connection/not_found.rb, line 8
def initialize(path)
  super "Vagrantfile not found for #{path}"
end